-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathasciidoc.css
121 lines (116 loc) · 1.88 KB
/
asciidoc.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
html, body {
color: black;
background: white;
}
body {
margin: 1em 5%;
text-align: justify;
}
h1, h2, h3, h4, h5, h6 {
padding: 0;
padding-left: 0.5em;
border-style: none none solid solid;
border-bottom-width: 1px;
}
h1, h2, h3 {
margin: 1em -3.5% 0.5em;
}
h4, h5, h6 {
margin: 1em -2.5% 0.5em;
}
h1 {
border-color: orange;
border-left-width: 1em;
}
h2 {
border-color: navy;
border-left-width: 0.7em;
}
h3 {
border-color: green;
border-left-width: 0.5em;
}
.sectionbody {
/*margin: 0 3%;*/
}
#footer {
margin: 1em -3% 0;
font-size: small;
border: none;
border-top: 2px solid silver;
}
.title {
border-bottom: 1px solid maroon;
font-weight: bold;
}
.list-group p {
margin-top: 0.2em;
margin-bottom: 0.2em;
}
.admonitionblock td.icon {
vertical-align: top;
padding-right: 0.5em;
}
.exampleblock {
margin: 0.8em auto;
border: 0.15em dotted maroon;
padding: 0 0.5em;
}
.exampleblock > .title {
margin-top: 0.5em;
}
ul, ol {
list-style-position: outside;
}
ol.arabic {
list-style-type: decimal;
}
ol.loweralpha {
list-style-type: lower-alpha;
}
ol.upperalpha {
list-style-type: upper-alpha;
}
ol.lowerroman {
list-style-type: lower-roman;
}
ol.upperroman {
list-style-type: upper-roman;
}
li p {
margin-top: 0.65em;
margin-bottom: 0.65em;
}
dd p {
margin-top: 0.1em;
margin-bottom: 0.65em;
}
pre {
border: dashed 1px gray;
padding: 0.3em;
}
code, kbd, samp {
border: dotted 1px gray;
padding: 1px;
text-decoration: none;
white-space: pre-wrap;
}
pre > code:only-child, pre > kbd:only-child, pre > samp:only-child {
display: block;
}
pre code, pre kbd, pre samp {
white-space: inherit;
}
code {
background: #efe;
}
kbd {
background: #ffd;
}
samp {
background: #eef;
}
var {
color: maroon;
background: inherit;
}