You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
586 B
CSS
33 lines
586 B
CSS
:root {
|
|
--fg-col: #FFFFFF;
|
|
--main-col: #94B1FF;
|
|
--bg-col: #000000;
|
|
}
|
|
|
|
body {
|
|
/* background-image: url("../images/splash.gif");
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 100%;
|
|
background-attachment: fixed; */
|
|
|
|
background: var(--bg-col);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2.4em !important;
|
|
border: none !important;
|
|
animation: none !important;
|
|
margin-top: 100px;
|
|
}
|
|
|
|
h1 > span {
|
|
border-right: .5em solid var(--main-col);
|
|
animation:
|
|
blink-caret 1.5s step-end infinite;
|
|
}
|
|
|
|
@keyframes blink-caret {
|
|
from, to { border-color: transparent }
|
|
50% { border-color: var(--main-col); }
|
|
}
|