-
Notifications
You must be signed in to change notification settings - Fork 1
/
site.css
104 lines (85 loc) · 1.26 KB
/
site.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
html, body {
width: 100%;
min-width: 1024px;
margin: 0;
padding: 0;
font-size: 10px;
}
body {
font-family: Helvetica, Sans-serif;
margin: 0;
background-color: #f2f2f2;
}
a {
color: #0055d4;
text-decoration: none;
}
a img {
border: none;
}
a:hover {
text-decoration: underline;
}
#top {
height: 15rem;
background-color: #333;
}
header {
width: 100rem;
height: 15rem;
margin: 0 auto;
padding: 0 1rem;
}
header #wordmark {
height: 3.2rem;
margin: 5.9rem 0rem;
}
header nav {
float: right;
padding: 0;
margin-top: 10rem;
}
header nav a {
display: block;
float: left;
font-size: 1.4rem;
line-height: 2rem;
color: #fff;
padding: 1.5rem 2.5rem;
}
header nav a:hover {
text-decoration: none;
background-color: #3d3d3d;
border-top-left-radius: 0.5rem;
border-top-right-radius: 0.5rem;
}
header nav a.selected {
background-color: #4b4b4b;
border-top-left-radius: 0.5rem;
border-top-right-radius: 0.5rem;
}
section {
width: 100%;
font-size: 1.3rem;
}
section.dark {
background-color: #f2f2f2;
}
.section_content {
width: 100rem;
margin: 0 auto;
padding: 4rem 1rem;
}
h2 {
font-size: 1.8rem;
color: #666;
}
section.light {
background-color: #fff;
}
footer #copyright {
clear: both;
font-size: 1.2rem;
color: #000;
text-align: center;
}