forked from aaronbloomfield/slp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarkdown.css
More file actions
58 lines (47 loc) · 975 Bytes
/
markdown.css
File metadata and controls
58 lines (47 loc) · 975 Bytes
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
/* This file is part of the http://github.com/aaronbloomfield/pdr
* repo, and has the same license as the rest of the repo (CC BY-SA)
*
* The formatting is loosely based on that of github.com's README.md
* file CSS formatting
*/
body {
font: 15px/1.4 Helvetica,arial,freesans,clean,sans-serif;
}
a {
text-decoration: none;
}
h1 {
font-size: 2.5em;
border-bottom: 1px solid rgb(221, 221, 221);
}
h2 {
font-size: 2em;
border-bottom: 1px solid rgb(238, 238, 238);
}
code {
background-color: rgb(248, 248, 248);
border: 1px solid rgb(221, 221, 221);
font-size: 13px;
line-height: 19px;
padding: 0px 5px;
}
pre code {
border: 0px solid;
}
pre {
background-color: rgb(248, 248, 248);
border: 1px solid rgb(221, 221, 221);
padding: 6px 10px;
}
/* table formatting */
th {
background-color: #cccccc;
text-align:center;
padding: 4px;
}
tr:hover {
background-color: #eeeeee;
}
td {
padding: 2px;
}