-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (52 loc) · 874 Bytes
/
style.css
File metadata and controls
60 lines (52 loc) · 874 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
58
59
60
html, body, div, h1, a, p, dl, dd {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
@media only screen and (min-width: 881px) {
html {
background: url(bg.jpg);
background-size: cover;
}
}
body {
-webkit-font-smoothing: antialiased;
background: #eee;
color: #999;
font: 14px/1.5 Cousine, Menlo, Monaco, monospaced;
max-width: 800px;
padding: 40px;
}
a {
color: inherit;
text-decoration: none;
border-bottom: 1px solid #ddd;
padding-bottom: 1px;
}
a:hover {
border-color: #aaa;
color: #777;
}
h1 {
color: #6da0f8;
font-family: Abel;
font-size: 4em;
font-weight: bold;
letter-spacing: 5px;
line-height: 1.2;
margin-bottom: 5px;
text-transform: uppercase;
}
p {
margin-bottom: 1em;
}
.contact {
margin-top: 2em;
}
.dark {
color: #222;
margin: 2em 0;
}