Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
You must create an account or log in to edit.

Template:TerminalLook/styles.css: Difference between revisions

Template page
Content deleted Content added
No edit summary
MMONTAGEe (talk | contribs)
No edit summary
Line 11: Line 11:
.TerminalTextRed {
.TerminalTextRed {
color: #c21018;
color: #c21018;
}

.TerminalTextBlue {
color: #1e90ff;
}

.TerminalTextOrange {
color: #ff8c00;
}
}


Line 17: Line 25:
animation: TerminalBlinker 1.25s infinite;
animation: TerminalBlinker 1.25s infinite;
}
}

.TerminalBlinkingQuestion::after {
content: "?";
animation: TerminalBlinker 1.25s infinite;
}



.TerminalSpinner::after {
.TerminalSpinner::after {
content: "|";
content: "|";
animation: TerminalSpinner 0.5s infinite;
animation: TerminalSpinner 0.5s infinite;
}

.TerminalFlicker {
animation: textflicker 0.012s infinite alternate;
text-shadow:
0.06rem 0 0.06rem #ea36af,
-0.125rem 0 0.06rem #75fa69;
letter-spacing: 0.125em;
}

.TerminalHighlight {
font-weight: bold;
color: #000;
background: linear-gradient(to right, #ccc, #fff);
border: 3px;

}
}


Line 57: Line 87:
content: "|";
content: "|";
}
}
}

@keyframes textflicker {
from {
text-shadow: 1px 0 0 #ea36af, -2px 0 0 #75fa69;
}
to {
text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
}
}
}

Revision as of 15:31, May 13, 2025

.TerminalWindow {
	background: var(--color-surface-4);
	color: #28b823;
	font-family: var(--font-family-monospace);
	margin-block: var(--space-md);
	padding: var(--space-sm);
	border: var(--border-base);
	border-radius: var(--border-radius-base);
}

.TerminalTextRed {
	color: #c21018;
}

.TerminalTextBlue {
	color: #1e90ff;
}

.TerminalTextOrange {
	color: #ff8c00;
}

.TerminalBlinkerCursor::after {
	content: "_";
	animation: TerminalBlinker 1.25s infinite;
}

.TerminalBlinkingQuestion::after {
	content: "?";
	animation: TerminalBlinker 1.25s infinite;
}


.TerminalSpinner::after {
	content: "|";
	animation: TerminalSpinner 0.5s infinite;
}

.TerminalFlicker {
  animation: textflicker 0.012s infinite alternate;
  text-shadow:
    0.06rem 0 0.06rem #ea36af,
    -0.125rem 0 0.06rem #75fa69;
  letter-spacing: 0.125em;
}

.TerminalHighlight {
  font-weight: bold;
  color: #000;
  background: linear-gradient(to right, #ccc, #fff);
  border: 3px;

}

@keyframes TerminalBlinker {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes TerminalSpinner {
	0% {
		content: "|";
	}

	25% {
		content: "/";
	}

	50% {
		content: "-";
	}

	75% {
		content: "\\";
	}

	100% {
		content: "|";
	}
}

@keyframes textflicker {
  from {
    text-shadow: 1px 0 0 #ea36af, -2px 0 0 #75fa69;
  }
  to {
    text-shadow: 2px 0.5px 2px #ea36af, -1px -0.5px 2px #75fa69;
  }
}