blob: 382bb3c23bded982729984c5fc7bdfe210f309a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
body {
margin: auto;
font-size: 24px;
padding: 1em;
max-width: 1024px;
font-family: 'Courier New', monospace;
color: #0f0;
background: #000;
word-wrap: break-word;
}
a {
text-decoration: none;
color: #0f0;
font-weight: bold;
padding-right: 0.25em;
}
a:hover {
text-decoration: underline;
color: #0f0;
}
h1 {
font-size:3rem;
letter-spacing:-.75px;
color: #0f0;
padding-top:.5rem;
}
footer {
position: fixed;
bottom: 0;
right: 0;
text-align: center;
}
pre {
border: 2px solid #0f0;
width: 70%;
}
.blink {
animation: blink 1s infinite;
animation-timing-function: linear(0 0%, 0 49%, 1 50%, 1 99%);
}
@keyframes blink {
from {opacity: 1;}
to {opacity: 0;}
}
|