-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (39 loc) · 733 Bytes
/
style.css
File metadata and controls
46 lines (39 loc) · 733 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
body {
margin: 1em;
font-family: 'Open Sans', helvetica, sans-serif;
}
body h1 {
color: #58bad4;
font-size: 3em;
font-family: 'Henny Penny', cursive;
filter: drop-shadow(-1px 1px 0px #000);
}
h3, h3 a {
color: #000;
font-size: 1.3em;
font-weight: normal;
font-family: 'Covered By Your Grace', cursive;
}
.container {
max-width: 1000px;
margin: 0 auto;
}
.container > footer {
color: #CCC;
font-size: .8em;
margin-top: 4em;
padding-top: .8em;
text-align: center;
border-top: 1px solid #CCC;
}
.container > footer a {
color: #AAA;
}
@media(min-width: 501px) {
.container > footer a:first-child {
text-align: left;
}
.container > footer a:last-child {
text-align: right;
}
}