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 2: Line 2:
color: var(--color-amaranth-legacy-scope);
color: var(--color-amaranth-legacy-scope);
text-shadow: 1px 1px 2px var(--color-amaranth-legacy-scope);
text-shadow: 1px 1px 2px var(--color-amaranth-legacy-scope);
}

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


@keyframes terminalPrompt {
@keyframes terminalPrompt {
from {
from {
opacity: 0;
border-bottom: none;
}
}


to {
to {
border-bottom: solid var(--border-width-base) var(--color-amaranth-legacy-scope);
opacity: 1;
}
}
}
}

Latest revision as of 07:42, March 8, 2025

.template-passwordscreen-prompt {
	color: var(--color-amaranth-legacy-scope);
	text-shadow: 1px 1px 2px var(--color-amaranth-legacy-scope);
	animation-duration: 1s;
	animation-name: terminalPrompt;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: linear;
}

@keyframes terminalPrompt {
	from {
		border-bottom: none;
	}

	to {
		border-bottom: solid var(--border-width-base) var(--color-amaranth-legacy-scope);
	}
}