-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
103 lines (88 loc) · 1.33 KB
/
styles.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
body,
html {
font-family: "Quattrocento" !important;
color: black !important;
}
body {
background: lightgrey;
}
a {
color: black;
text-decoration: underline;
cursor: pointer;
}
a:hover {
@extend a;
color: #777;
}
a:active {
@extend a;
color: #000;
text-decoration: none;
}
.topper {
padding: 24px 0 0;
font-size: 1.25em;
}
.head {
text-align: center;
font-size: 3.5em;
border-bottom: 3px solid black;
font-weight: 800;
margin: 12px 0;
padding: 0 0 18px;
}
.sub-head {
border-bottom: 1px solid black;
padding: 0 0 9px;
font-size: 0.9em;
height: 24px;
}
.l {
@extend .sub-head;
text-align: left;
}
.c {
@extend .sub-head;
text-align: center;
}
.r {
@extend .sub-head;
text-align: right;
}
.big-bold {
font-size: 4em;
font-weight: 800;
line-height: 1em;
text-align: center;
padding: 24px 0;
}
.articles {
columns: 2;
-webkit-columns: 2;
-moz-columns: 2;
list-style-position: inside;
list-style-type: disc;
font-size: 1.25em;
line-height: 1.75em;
padding: 0 0 24px;
text-indent: 24px;
}
p {
padding: 0;
margin: 0;
}
.big-first {
font-size: 3em;
font-weight: 800;
padding-right: 6px;
line-height: 1em;
display: inline;
position: relative;
}
.bottom {
border-top: 1px solid black;
padding: 12px 0 12px;
font-size: 0.9em;
text-align: center;
}