forked from maunium/dontasktoask.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (60 loc) · 919 Bytes
/
style.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
html {
height: 100%;
}
body {
min-height: 100%;
display: grid;
grid-template-rows: 1fr auto;
margin: 0 auto;
max-width: 672px;
line-height: 1.6;
font-size: 18px;
color: #222;
background-color: #FAFAFA;
padding: 0 10px;
font-family: "Open Sans";
}
@media screen and (min-width: 680px) {
main {
margin: 40px 0;
}
}
h1, h2 {
line-height: 1.2;
}
footer {
grid-row-start: 2;
grid-row-end: 3;
color: #888;
font-size: 9px;
}
a {
color: #07A;
}
a:visited {
color: #941352;
}
footer > a {
color: #888 !important;
}
blockquote {
background: #F9F9F9;
border-left: 10px solid #CCC;
margin: 1.5em 10px;
padding: 0.5em 10px;
font-family: monospace;
}
blockquote p {
display: inline;
}
@media screen and (min-width: 400px) {
blockquote {
display: table;
}
blockquote > * {
display: table-cell;
}
blockquote > .name {
padding-right: 8px;
}
}