-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtables.css
57 lines (49 loc) · 857 Bytes
/
tables.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
/* markdown tables */
table {
border:#ccc 1px solid;
border-radius:3px;
border-collapse: separate;
margin: 1em;
}
table th {
padding:21px 25px 22px 25px;
border:1px solid #d0d0d0;
border-bottom:1px solid #808080;
}
table tr {
padding-left:20px;
}
table td {
padding:18px;
/* border-top: 1px solid #ffffff; */
border:1px solid #d0d0d0;
}
/* markdown code */
code {
font-size: inherit;
}
.highlighter-rouge {
background-color: #f8f8f8;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 1em;
margin-bottom: 0.6em;
}
.container {
width: 80%;
}
ul, ol {
padding-left: 40px;
margin-bottom: 12px;
}
.highlight {
margin-bottom: 12px;
padding-top: 12px;
padding-left: 12px;
}
body blockquote {
padding: 0 1em;
color: #777;
border-left: 0.25em solid #ddd;
margin: 0;
}