This repository was archived by the owner on Nov 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarta.css
More file actions
201 lines (168 loc) · 3.86 KB
/
Copy pathmarta.css
File metadata and controls
201 lines (168 loc) · 3.86 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/**********************
* general information *
***********************
* file: marta.css
* created: 2015-07-23
* author(s): Marta Rodriguez Orejuela <marta.rodriguez@mdc-berlin.de> (MR),
* Marcel Schilling <marcel.schilling@mdc-berlin.de> (MS)
* license: GNU Affero General Public License Version 3 (GNU AGPL v3)
* purpose: beautify HTML generated from Markdown
**************************************
* change log (reverse chronological) *
**************************************
* 2015-07-23: initial version (original file provided by MR with header comments added by MS)
**********************************
* file content as provided by MR *
*********************************/
body{
margin: 0 auto;
background-color:white;
font-family:Georgia, Palatino, serif;
color: #333333; /* dark gray not black */
line-height: 1;
max-width: 1024px;
padding: 30px;
font-size: 18px;
}
p {
font-size: 16px;
line-height: 150%;
max-width: 1024;
font-weight: 400;
color: #333333
}
h1, h2, h3, h4 {
color: #111111;
font-weight: 400;
border-bottom: 1px solid #000;
}
h2, h3, h4, h5, p {
margin-bottom: 25px;
padding: 0;
}
h1 {
margin-bottom: 10px;
font-size:250%;
padding: 0px;
font-variant:small-caps;
border-bottom: 3px solid #000;
}
h2 {
font-size:150%
margin: 24px 0 6px;
border-bottom: 2px solid #000;
}
h3 {
font-size:120%
}
h4 {
font-size:100%
font-variant:small-caps;
}
h5 {
font-size:80%
font-weight: 100;
}
h6 {
font-size:80%
font-weight: 100;
color:red;
font-variant:small-caps;
}
body {counter-reset: h2}
h2 {counter-reset: h3}
h3 {counter-reset: h4}
h4 {counter-reset: h5}
h5 {counter-reset: h6}
h2:before {counter-increment: h2; content: counter(h2) ". "}
h3:before {counter-increment: h3; content: counter(h2) "." counter(h3) ". "}
h4:before {counter-increment: h4; content: counter(h2) "." counter(h3) "." counter(h4) ". "}
h5:before {counter-increment: h5; content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) ". "}
h6:before {counter-increment: h6; content: counter(h2) "." counter(h3) "." counter(h4) "." counter(h5) "." counter(h6) ". "}
h2.nocount:before, h3.nocount:before, h4.nocount:before, h5.nocount:before, h6.nocount:before { content: ""; counter-increment: none }
a {
color: grey;
margin: 0;
padding: 0;
vertical-align: baseline;
}
a:hover {
text-decoration: blink;
color: green;
}
a:visited {
color: #333333;
}
ul, ol {
padding: 0;
margin: 0px 0px 0px 50px;
}
ul {
list-style-type: square;
list-style-position: inside;
}
li {
line-height:150%
}
li ul, li ul {
margin-left: 24px;
}
pre {
font-size: 95%%;
line-height: 140%;
font-family: "Courier 10 Pitch", Courier, monospace;
white-space: pre;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -o-pre-wrap;
width: auto;
display: block;
clear: both;
color: #555555;
padding: 1em 1em;
margin: auto 40px auto 40px;
background: #f4f4f4;
border: solid 1px #e1e1e1
}
code {
font-family: Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
font-size: 95%;
line-height: 140%;
white-space: pre;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -o-pre-wrap;
color: #333333;
}
aside {
display: block;
float: right;
width: 390px;
}
blockquote {
border-left:.5em solid #eee;
padding: 0 1em;
margin-left:0;
max-width: 476px;
}
blockquote cite {
font-size:14px;
line-height:20px;
color:#bfbfbf;
}
blockquote cite:before {
content: '\2014 \00A0';
}
blockquote p {
color: #666;
max-width: 460px;
}
hr {
width: 540px;
text-align: left;
margin: 0 auto 0 0;
color: #999;
}
img{
max-width:1024px;
}