-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (61 loc) · 786 Bytes
/
style.css
File metadata and controls
76 lines (61 loc) · 786 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
* {
padding: 0;
margin: 0;
}
html {
background: #eee;
color: #000;
}
body {
color: #3c3c3c;
font-family: sans-serif;
font-size: 16px;
text-align: center;
}
p, h1, footer {
padding: 10px 10px;
}
p, footer {
border-top: 2px solid #ddd;
border-bottom: 2px solid #ddd;
}
img, canvas, body {
width: 500px;
margin-left: auto;
margin-right: auto;
}
h1 {
color: #111;
font-family: monospace;
font-size: 65px;
}
a {
color: #5d5d5d;
}
a:hover {
color: #111;
}
ul {
margin: 20px 0;
list-style: none;
}
li {
padding-bottom: 20px;
}
footer {
color: #bbb;
}
footer a {
color: #999;
}
@media screen and (max-width: 500px) {
h1 {
font-size: 40px;
}
footer {
font-size: 14px;
}
img, canvas, body {
width: 100%;
}
}