This repository has been archived by the owner on Oct 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
legacy.css
96 lines (96 loc) · 1.55 KB
/
legacy.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
.container {
margin-top: 40px;
margin-left: auto;
margin-right: auto;
margin-bottom: 100px;
max-width: 1000px;
width: 90%;
h1, h2, h3, h4 {
font-weight: 300;
}
a {
color: #155674;
}
a:hover, a:focus, a:active {
color: #318CB7;
}
h3 {
margin-top: 20px;
margin-bottom: 10px;
}
h3 small {
color: #7c7c7c;
font-size: 65%;
}
hr {
border: 0;
border-top: 1px solid #eee;
height: 0;
box-sizing: content-box;
}
hr.person-note-separator {
width: 90%;
}
/* utilities */
.\+margin-bottom-large {
margin-bottom: 40px;
}
}
@media only screen and (max-width: 767px) {
.container {
font-size: 15px;
h1 {
font-size: 40px;
}
h2 {
font-size: 23px;
}
h3 {
font-size: 20px;
}
hr {
margin-top: 34px;
margin-bottom: 34px;
}
.\+space-children>* {
margin-left: 10px;
margin-right: 10px;
}
.\+font-smaller {
font-size: 12px;
}
hr.person-note-separator {
margin-top: 20px;
margin-bottom: 20px;
}
}
}
@media only screen and (min-width: 768px) {
.container {
font-size: 23px;
h1 {
font-size: 70px;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 26px;
}
hr {
margin-top: 70px;
margin-bottom: 70px;
}
.\+space-children>* {
margin-left: 28px;
margin-right: 28px;
}
.\+font-smaller {
font-size: 18px;
}
hr.person-note-separator {
margin-top: 36px;
margin-bottom: 36px;
}
}
}