forked from hack-carleton/hack-carleton.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (44 loc) · 687 Bytes
/
style.css
File metadata and controls
53 lines (44 loc) · 687 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
html {
font-family: sans;
background-color: #000;
font-size: 16px;
}
body {
margin: 45px auto;
}
header > h1 {
font-family: 'PT Sans';
font-weight: 700;
text-align: center;
color: #cf112d;
}
@media (min-width: 701px) {
header > h1 {
font-size: 6rem;
}
}
@media (max-width: 400px) {
header > h1 {
font-size: 2.5rem;
}
}
@media (min-width: 401px) and (max-width: 700px) {
header > h1 {
font-size: 3.5rem;
}
}
nav {
margin: 20px;
text-align: center;
}
nav > a {
color: #fff;
}
nav > a:hover {
color: #cf112d;
}
footer {
color: #ccc;
text-align: center;
font-weight: 300;
}