-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
76 lines (68 loc) · 1.44 KB
/
index.css
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
body {
background-color: #181818;
color: #D7D7D7;
font-family: "Tamsyn", "Terminus", monospace;
text-align: center;
}
#content {
background-color: #262626;
position: absolute;
padding: 1em;
margin: auto;
margin-top: 10em;
margin-bottom: 0;
padding-bottom: 0;
left: 0;
right: 0;
width: 50em;
border-radius: 1.2em;
}
h1 {
font-size: medium;
margin-top: 0;
}
p {
font-size: medium;
}
a {
color: #87AFAF;
display: inline-block;
vertical-align: bottom;
-webkit-transform: translateZ(0);
transform: translateZ(0);
position: relative;
overflow: hidden;
font-weight: bold;
padding: 0.6em;
margin-bottom: 0;
text-decoration: none;
background-color: #262626;
transition: background-color 0.2s;
}
a:hover {
background-color: #585858;
}
a:before {
content: "";
position: absolute;
z-index: -1;
left: 0;
right: 0;
bottom: 0;
background: #E0E0E0;
height: 0.2em;
-webkit-transform: translateY(4px);
transform: translateY(4px);
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
a:hover:before, a:focus:before, a:active:before {
-webkit-transform: translateY(0);
transform: translateY(0);
}
#links {
}