Template:SkornePasswordScreen/styles.css: Difference between revisions
Template page
More actions
Content deleted Content added
Tesinormed (talk | contribs) No edit summary |
Tesinormed (talk | contribs) 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 15: | Line 15: | ||
@keyframes terminalPrompt { |
@keyframes terminalPrompt { |
||
from { |
from { |
||
opacity: 0; |
|||
} |
} |
||
to { |
to { |
||
opacity: 1; |
|||
} |
} |
||
} |
} |
||
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 {
opacity: 0;
}
to {
opacity: 1;
}
}