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.
27 lines
431 B
CSS
27 lines
431 B
CSS
5 years ago
|
body{
|
||
|
font-family: "Courier New", Courier, monospace;
|
||
|
color: white;
|
||
|
background: black;
|
||
|
}
|
||
|
h2 {margin-top: 0px;}
|
||
|
div{ padding: 20px;}
|
||
|
|
||
|
#xnili{ color: #00db00;}
|
||
|
#tilde{ color: blue; }
|
||
|
|
||
|
.home:hover {color: red;}
|
||
|
|
||
|
.blink_me {
|
||
|
text-decoration: overline underline;
|
||
|
font-weight: bold;
|
||
|
font-size: 30px;
|
||
|
animation: blinker 1s linear infinite;
|
||
|
}
|
||
|
|
||
|
@keyframes blinker {
|
||
|
50% {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
iframe{width: 100%; height: 700px;}
|