summaryrefslogtreecommitdiff
path: root/reference/css/page.css
blob: 7b6354ea3f24b79d454a17b1b15501d692179894 (plain) (blame)
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
div.page {
	background-color:       var(--backgroundColour1);
	border-radius:          1rem;
	border-top-left-radius: 0;
	border-top-right-radius:0;
	margin:                 0 auto;
	max-width:              var(--maximumPageWidth);
	min-width:              var(--minimumPageWidth);
	padding:                1rem 2rem;
	text-align:             left;
	width:                  100%;
}

div.page p.pageTitle,div.page div.section p.sectionTitle {
	font-family:"Helvetica","sans-serif";
	font-weight:bold;
}

div.page p.pageTitle {
	font-size:     3rem;
	letter-spacing:calc(1rem / 12);
	margin-bottom: 1rem;
	text-align:    center;
}

div.page div.section p.sectionTitle {
	border-top-color:var(--foregroundColour);
	border-top-style:solid;
	border-top-width:calc(1rem / 3);
	font-size:       2rem;
	padding-top:     1rem;
	width:           fit-content;
}

div.page div.section + div.section {
	margin-top:1rem;
}