39 lines
539 B
CSS
39 lines
539 B
CSS
@import url("https://fonts.googleapis.com/css?family=Bungee");
|
|
|
|
body {
|
|
color: white;
|
|
font-family: "Bungee", cursive;
|
|
text-align: center;
|
|
}
|
|
a {
|
|
color: #2aa7cc;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
color: white;
|
|
}
|
|
svg {
|
|
width: 50vw;
|
|
}
|
|
.lightblue {
|
|
fill: #444;
|
|
}
|
|
.eye {
|
|
cx: calc(115px + 30px * var(--mouse-x));
|
|
cy: calc(50px + 30px * var(--mouse-y));
|
|
}
|
|
#eye-wrap {
|
|
overflow: hidden;
|
|
}
|
|
.error-text {
|
|
font-size: 120px;
|
|
}
|
|
.alarm {
|
|
animation: alarmOn 0.5s infinite;
|
|
}
|
|
|
|
@keyframes alarmOn {
|
|
to {
|
|
fill: darkred;
|
|
}
|
|
}
|