This repository was archived by the owner on Dec 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminimal.css
More file actions
153 lines (140 loc) · 2.24 KB
/
minimal.css
File metadata and controls
153 lines (140 loc) · 2.24 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* @theme minimal */
header,
footer {
position: absolute;
left: 0;
right: 0;
margin: 0;
}
header {
top: 0;
padding: 12px;
height: 20px;
font-size: 12px;
color: rgba(0, 0, 0, 0.75);
}
footer {
bottom: 0;
padding: 12px;
height: 20px;
font-size: 12px;
color: rgba(0, 0, 0, 0.75);
}
section {
padding: 67px;
justify-content: center;
flex-direction: column;
flex-wrap: nowrap;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 1.5em;
color: black;
background-color: white;
}
section h1 {
font-size: 2.5em;
color: black;
}
section h1:first-of-type {
margin-top: 17%;
}
section h2 {
font-size: 1.3em;
color: rgba(0, 0, 0, 0.5);
}
section h1,
section h2 {
text-align: center;
}
section h3 {
font-size: 1.6em;
}
section h4 {
font-size: 1.4em;
}
section h5 {
font-size: 1.2em;
}
section h6 {
font-size: 1em;
}
section h3,
section h4,
section h5,
section h6 {
border-bottom: none;
margin-bottom: 21px;
}
section h1 strong,
section h2 strong,
section h3 strong,
section h4 strong,
section h5 strong,
section h6 strong {
font-weight: inherit;
}
section hr {
height: 0;
padding-top: 0.25em;
}
section ul,
section ol {
margin: 30px;
text-align: left;
}
section ul li,
section ol li {
font-size: 1.5em;
}
section ul li li,
section ol li li {
font-size: 90%;
}
section ul {
list-style-type: square;
}
section img {
border: 1px solid black;
display: block;
margin-left: auto;
margin-right: auto;
background-color: transparent;
}
section a {
color: blue;
text-decoration: underline;
}
section blockquote {
border-left: 13px solid black;
padding-left: 13px;
color: rgba(0, 0, 0, 0.75);
}
section table {
margin-left: auto;
margin-right: auto;
border-collapse: collapse;
}
section table tr {
background-color: white;
}
section table th,
section table td {
padding: 12px;
}
section table td {
border-top: 1px solid black;
}
section pre {
border: 1px solid black;
color: black;
background-color: white;
padding: 5px;
}
section::after {
position: absolute;
padding: 12px;
height: 20px;
color: rgba(0, 0, 0, 0.75);
font-size: 12px;
content: attr(data-marpit-pagination) " / " attr(data-marpit-pagination-total);
}
/*# sourceMappingURL=minimal.css.map */