1
0
Fork 0
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.

41 lines
537 B
CSS

body {
background-color: #000000;
color: #FFFFFF;
max-width:670px;
margin: auto;
font-size: large;
margin-bottom: 10px;
letter-spacing: 4px;
}
a, a:visited {
text-decoration: underline;
color: inherit;
}
i, em {
color: #ffd700;
}
h2 {
font-size: 30pt;
color: #c8a2c8;
}
.blink1 {
animation: blinker 1s linear infinite;
}
.blink2 {
animation: blinker 2s linear infinite;
}
.blink3 {
animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
img {
opacity: 1;
}
img:hover {
opacity: 0.8;
}