first commit
This commit is contained in:
commit
b37b89a21b
91 changed files with 1384 additions and 0 deletions
40
style.css
Normal file
40
style.css
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue