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
No edit summary
Line 4: Line 4:
font-family: var(--font-family-monospace);
font-family: var(--font-family-monospace);
white-space: pre-wrap;
white-space: pre-wrap;
margin-block: var(--space-md);
}
}



Revision as of 10:45, April 2, 2025

.TerminalWindow {
	background: var(--color-surface-4);
	color: #28b823;
	font-family: var(--font-family-monospace);
	white-space: pre-wrap;
	margin-block: var(--space-md);
}

.TerminalTextRed {
	color: #c21018;
}

.TerminalBlinkerCursor {
	animation: TerminalBlinker 1s infinite;
}

.TerminalSpinner::after {
	animation: TerminalSpinner 0.5s infinite;
}

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

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

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

	25% {
		content: "/";
	}

	50% {
		content: "-";
	}

	75% {
		content: "\\";
	}

	100% {
		content: "|";
	}
}