Template:TerminalLook/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 3: | Line 3: | ||
color: #28b823; |
color: #28b823; |
||
font-family: var(--font-family-monospace); |
font-family: var(--font-family-monospace); |
||
white-space: pre-wrap; |
|||
} |
} |
||
| Line 13: | Line 14: | ||
} |
} |
||
.TerminalSpinner |
.TerminalSpinner { |
||
animation: TerminalSpinner 0.5s infinite; |
animation: TerminalSpinner 0.5s infinite; |
||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
} |
} |
||
| Line 36: | Line 51: | ||
100% { |
100% { |
||
content: "|"; |
content: "|"; |
||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
| ⚫ | |||
} |
} |
||
} |
} |
||
Revision as of 10:42, April 2, 2025
.TerminalWindow {
background: var(--color-surface-4);
color: #28b823;
font-family: var(--font-family-monospace);
white-space: pre-wrap;
}
.TerminalTextRed {
color: #c21018;
}
.TerminalBlinkerCursor {
animation: TerminalBlinker 1s infinite;
}
.TerminalSpinner {
animation: TerminalSpinner 0.5s infinite;
}
@keyframes TerminalBlinker {
0% {
opacity: 0;
}
50% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes TerminalSpinner {
0% {
content: "|";
}
25% {
content: "/";
}
50% {
content: "-";
}
75% {
content: "\\";
}
100% {
content: "|";
}
}