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 7: Line 7:
animation-direction: alternate;
animation-direction: alternate;
animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
padding: var(--space-xs);
}
}


Line 12: Line 13:
from {
from {
border-right: none;
border-right: none;
padding-right: 0;
}
}


to {
to {
border-right: solid 2px white;
border-right: solid 2px var(--color-amaranth-legacy-scope);
padding-right: var(--space-sm);
}
}
}
}

Revision as of 07:36, 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: ease-in-out;
	padding: var(--space-xs);
}

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

	to {
		border-right: solid 2px var(--color-amaranth-legacy-scope);
	}
}