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

Template:SkornePasswordScreen/styles.css: Difference between revisions

Template page
Content deleted Content added
No edit summary
No edit summary
Line 5: Line 5:


.template-passwordscreen-prompt::after {
.template-passwordscreen-prompt::after {
content: '';
content: ' ';
animation-duration: 1s;
animation-duration: 1s;
animation-name: terminalPrompt;
animation-name: terminalPrompt;
Line 18: Line 18:


to {
to {
content: '|';
content: '_';
}
}
}
}

Revision as of 07:40, March 8, 2025

.template-passwordscreen-prompt {
	color: var(--color-amaranth-legacy-scope);
	text-shadow: 1px 1px 2px var(--color-amaranth-legacy-scope);
}

.template-passwordscreen-prompt::after {
	content: ' ';
	animation-duration: 1s;
	animation-name: terminalPrompt;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
}

@keyframes terminalPrompt {
	from {
	}

	to {
		content: '_';
	}
}