Template:SkornePasswordScreen/styles.css: Difference between revisions
Template page
More actions
Content deleted Content added
Tesinormed (talk | contribs) Created page with ".template-passwordscreen-summary { color: var(--color-amaranth-legacy-scope); text-shadow: 0 0 0 4px var(--color-amaranth-legacy-scope); }" |
Tesinormed (talk | contribs) No edit summary |
||
| (14 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
.template-passwordscreen- |
.template-passwordscreen-prompt { |
||
color: var(--color-amaranth-legacy-scope); |
color: var(--color-amaranth-legacy-scope); |
||
text-shadow: |
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); |
|||
} |
|||
} |
} |
||
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);
}
}