-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
68 lines (53 loc) · 1.34 KB
/
style.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
html {
font-size: 10px;
font-family: "HelveticaMonospacedW01",Monaco,Consolas,"Lucida Console",monospace;
background-color: #fff;}
body {
line-height: 1;
font-size: 100%;
color: #1b1b1b;
-webkit-transition: color 500ms,background-color 500ms;
transition: color 500ms,background-color 500ms;}
main {
padding: 5em 1em 1em 10rem;
font: 1.4em/1.4em "HelveticaMonospacedW01",Monaco,Consolas,"Lucida Console",monospace;}
h1 {
font: 1.8em/1.4em "HelveticaMonospacedW01",Monaco,Consolas,"Lucida Console",monospace;
margin-bottom: 2em;}
h2 {
font: 1.6em/1.4em "HelveticaMonospacedW01",Monaco,Consolas,"Lucida Console",monospace;
margin-bottom: 1em;
margin-top: 2em;}
ul {
list-style-type: none;}
li {
color: #808080;
padding: 0.5em 0 0.5em;}
a {
text-decoration: none;
cursor: pointer;}
a, a:visited, a:active {
color: #808080;}
a:hover {
color: #000;}
table {
width: 100%;
border: 1px solid #000000;
text-align: center;}
tr:nth-child(even) {
background-color: #f2f2f2;}
td {
vertical-align: middle;}
footer {
font-size: 1em;
line-height: 1.2em;
bottom: 0;
left: 10em;
opacity: 0.2;
-webkit-transition: opacity 150ms;
transition: opacity 150ms;}
footer:hover {
opacity: 1;}
@media (max-width: 500px) {
main {
padding: 5em;}