-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscreen.css
More file actions
110 lines (90 loc) · 1.23 KB
/
screen.css
File metadata and controls
110 lines (90 loc) · 1.23 KB
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
body {
background-color: #faf8eb;
font-family: 'Source Sans Pro', sans-serif;
}
.wrapper {
max-width: 600px;
margin: 30px auto;
padding: 15px;
}
.main-text {
font-weight: 400;
font-size: 20px;
line-height: 30px;
margin: 30px 0 0 0;
}
.dropcap {
float: left;
display: block;
width: 30px;
height: 60px;
color: #000;
border-bottom: 15px solid #ebe8d1;
font-size: 100px;
line-height: 60px;
padding: 10px 10px 20px 10px;
margin-right: 10px;
}
h1 {
font-weight: 900;
font-size: 42px;
line-height: 38px;
}
h3 {
font-weight: 200;
font-size: 24px;
}
h4 {
font-size: 26px;
margin: 0 0 20px 0;
}
@media (min-width:500px){
.wrapper {
padding: 0;
}
h1 {
font-size: 72px;
line-height: 60px;
}
h3 {
font-size: 30px;
}
}
a {
color: #ff5c1c;
text-decoration: none;
}
a:hover {
color: #d43d02;
}
p {
margin-bottom: 25px;
}
.byline {
/*font-style: italic;*/
font-size: 18px;
font-weight: 400;
}
code {
font-size: 18px;
background-color: #FFF;
color: #666;
}
.main-text img {
width: 100%;
height: auto;
}
.link-mod {
background-color: #FFF;
padding: 20px;
margin: 20px 0 40px 0;
}
.links {
list-style-position: inside;
padding: 0;
margin: 0;
}
.links li a {
padding: 10px 0;
border-bottom: #CCC;
}