summaryrefslogtreecommitdiff
path: root/src/css/formats/asciidoc.less
blob: 89dfcb2b11ce62da8309b1b59b03843911dad44a (plain)
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
@import "../variables.less";

.toc {
	font-weight: bold;

	ul {
		font-weight: normal;
		list-style-type: decimal;
	}
}

.admonitionblock {
	background-color: @blockBackgroundColor;
	border: 1px solid @blockBorderColor;
	margin: 0.5em auto 1.75em auto;
	width: 90%;
	padding: 0.5em;

	table {
		td.icon {
			text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
			font-size: 1.5em;

			div.title {
				margin: 0 1em;
			}
		}

		td.content {
			padding: 0 1.125em;
			border-left: 1px solid #ddd;
		}
	}
}

div#footnotes {
	font-size: smaller;

	hr {
		margin-top: 2em;
		width: 80%;
		text-align: left;
		color: @blockBorderColor;
	}
}