-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsite.css
More file actions
57 lines (49 loc) · 741 Bytes
/
site.css
File metadata and controls
57 lines (49 loc) · 741 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
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,700,300,100);
body
{
font-family: 'Roboto Mono';
color: #4c4c4c;
text-align: center;
padding: 15px;
background: url("gopher.png") no-repeat bottom;
background-position: 50px;
}
h1
{
font-weight: 500;
font-size: 40px;
margin-bottom: 0;
}
h2
{
font-weight: 400;
font-size: 26px;
margin: 10px 0 30px 0;
}
h3
{
font-weight: 300;
font-size: 21px;
}
h3 a
{
color: #4c4c4c;
text-decoration: none;
}
h3 a:hover
{
text-decoration: underline;
}
.footer
{
margin-top: 35px;
font-size: 13px;
}
@media (max-width: 1000px)
{
body
{
background-position: 50px 20px;
margin-top: 220px;
}
}