-
Notifications
You must be signed in to change notification settings - Fork 5
/
clean.css
57 lines (47 loc) · 820 Bytes
/
clean.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
@import url('https://fonts.googleapis.com/css?family=Roboto');
* {
font-family: 'Roboto', sans-serif !important;
}
body {
font-size: 16px !important;
line-height: 1.5;
margin: 0;
color: #333;
background-color: #e9e9e9;
}
.page {
max-width:900px;
margin: 2rem auto;
background: #fff;
padding: 1rem;
}
h1 {
font-size: 44px !important;
letter-spacing: -0.5px !important;
line-height: 46px !important;
margin: 22px 0 15px 0 !important;
}
h2 {
font-size: 35px;
line-height: 38px;
font-weight: bold;
}
h3 {
font-size: inherit;
font-weight: bold;
border-bottom: 1px solid #333;
}
ul {
margin: 1rem;
}
ol {
margin: 1rem;
}
img {
width: 100%;
}
a {
color: #f06040;
border-bottom: 1px solid #f06040;
transition: border-bottom-color .15s ease-out,color .2s ease-out;
}