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..." |
m TheStellarExplorer moved page Template:TerminalLookVela/styles.css to Template:VelaTerminal/styles.css without leaving a redirect: Author request |
||
| (11 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
.TerminalWindow { |
.TerminalWindow { |
||
background-color: rgba(0, 0, 0, 0. |
background-color: rgba(0, 0, 0, 0.4) !important; |
||
border-radius: 8px !important; |
|||
| ⚫ | |||
border-radius: 8px; |
|||
box-shadow: var(--color-amaranth-legacy-scope) 0 0 10px !important; |
|||
border-width: 3px; |
|||
font-family: 'TemplateStyles Overpass'; |
|||
| ⚫ | |||
} |
} |
||
.TerminalTextColored { |
|||
.TerminalText { |
|||
color: var(--color-amaranth-legacy-scope); |
color: var(--color-amaranth-legacy-scope); |
||
text-shadow: var(--color-amaranth-legacy-scope) 0px 0px 12px !important; |
|||
} |
} |
||
Latest revision as of 19:23, May 30, 2025
.TerminalWindow {
background-color: rgba(0, 0, 0, 0.4) !important;
border-radius: 8px !important;
border: 2px solid var(--color-amaranth-legacy-scope) !important;
box-shadow: var(--color-amaranth-legacy-scope) 0 0 10px !important;
}
.TerminalTextColored {
color: var(--color-amaranth-legacy-scope);
text-shadow: var(--color-amaranth-legacy-scope) 0px 0px 12px !important;
}
.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: "|";
}
}