-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
58 lines (48 loc) · 802 Bytes
/
index.css
File metadata and controls
58 lines (48 loc) · 802 Bytes
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
52
53
54
55
56
57
html, body {
height: 100%;
}
.blink {
animation: blink-animation 1s steps(5, start) infinite;
-webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
to {
visibility: hidden;
}
}
@-webkit-keyframes blink-animation {
to {
visibility: hidden;
}
}
body {
display: table;
width: 100%;
margin: 0;
font-family: monospace;
color: green;
background-color: black;
}
#wrap {
display: table-cell;
text-align: center;
vertical-align: middle;
}
#wrap a {
display: inline-block;
height: 48px;
line-height: 48px;
padding-left: 12px;
padding-right: 12px;
text-decoration: none;
color: green;
}
#wrap a:hover {
color: lightgreen;
text-decoration: underline;
}
#wrap a:visited {
color: darkgreen;
}
#wrap q {
}