Template:VelaTerminal/styles.css: Difference between revisions
Template page
More actions
Content deleted Content added
Created page with ".TerminalWindow { background-color: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); border-radius: 8px; border-width: 3px; font-family: 'TemplateStyles Overpass'; border: 2px solid var(--color-amaranth-legacy-scope); } .TerminalText { color: var(--color-amaranth-legacy-scope); } .TerminalBlinkerCursor::after { content: "_"; animation: TerminalBlinker 1.25s infinite; } .TerminalSpinner::after { content: "|"; animation: TerminalSpinner 0.5s inf..." |
No edit summary |
||
| Line 1: | Line 1: | ||
.TerminalWindow { |
.TerminalWindow { |
||
background-color: rgba(0, 0, 0, 0.6); |
background-color: rgba(0, 0, 0, 0.6) !important; |
||
backdrop-filter: blur(4px); |
backdrop-filter: blur(4px) !important; |
||
border-radius: 8px; |
border-radius: 8px !important; |
||
border-width: 3px; |
border-width: 3px !important; |
||
| ⚫ | |||
font-family: 'TemplateStyles Overpass'; |
|||
| ⚫ | |||
} |
} |
||
Revision as of 15:29, May 12, 2025
.TerminalWindow {
background-color: rgba(0, 0, 0, 0.6) !important;
backdrop-filter: blur(4px) !important;
border-radius: 8px !important;
border-width: 3px !important;
border: 2px solid var(--color-amaranth-legacy-scope) !important;
}
.TerminalText {
color: var(--color-amaranth-legacy-scope);
}
.TerminalBlinkerCursor::after {
content: "_";
animation: TerminalBlinker 1.25s infinite;
}
.TerminalSpinner::after {
content: "|";
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: "|";
}
}