-
Notifications
You must be signed in to change notification settings - Fork 1
/
screen.css
113 lines (104 loc) · 1.47 KB
/
screen.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
105
106
107
108
109
110
111
112
113
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 0;
}
a {
color: #06f;
}
h1 {
font-size: 2.2em;
}
h2 {
font-size: 1.4em;
}
h2, h3, h4 {
margin-top: 0;
}
h3, h4 {
margin-bottom: 0.5em;
}
p, ul {
font-size: 0.8125em;
line-height: 1.5;
margin: 0 0 1.5em;
}
code {
font-size: 1.2727em;
color: #777;
}
iframe {
border: 0;
overflow: hidden;
}
.container {
margin: 0 auto;
max-width: 46em;
padding: 1em 0;
}
.footer {
padding-top: 1.5em;
}
.desc {
color: #888;
}
.intro {
border-bottom: 1px dotted #bbb;
padding-bottom: 1.5em;
}
.social {
border-top: 1px dotted #bbb;
padding-top: 1.5em;
}
/* minor responsive adjustments */
.footer {
border-top: 1px dotted #aaa;
}
.content {
border-bottom: 1px dotted #aaa;
margin-bottom: 1.5em;
}
@media only screen and (min-width: 34em) {
p, ul {
font-size: 0.875em;
}
.feature:first-child,
.info:first-child {
border-right: 1px dotted #aaa;
}
.container {
padding: 1em;
}
h1 {
font-size: 1.6em;
}
h2 {
font-size: 1.6em;
}
}
@media only screen and (min-width: 54em) {
.content {
border: none;
border-right: 1px dotted #aaa;
margin-bottom: 0;
}
.info:first-child {
border: none;
}
h1 {
font-size: 2.0em;
}
h2 {
font-size: 1.7em;
}
}
@media only screen and (min-width: 76em) {
.info:first-child {
border-right: 1px dotted #aaa;
}
h1 {
font-size: 2.2em;
}
h2 {
font-size: 1.8em;
}
}