summaryrefslogtreecommitdiff
path: root/css/page.css
blob: 1a9413915b35447903dbfce839b968bb0dd012b7 (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
div.page {
	background-color:          var(--backgroundColour1);
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius:1rem;
	border-top-color:          var(--foregroundColour);
	border-top-style:          solid;
	border-top-width:          calc(1rem / 3);
	box-sizing:                border-box;
	height:                    100%;
	margin:                    auto;
	margin-bottom:             1rem;
	max-width:                 var(--maximumPageWidth);
	min-width:                 var(--minimumPageWidth);
	padding:                   1rem 2rem;
	width:                     100%;
}

div.section + div.section::before {
	content:         "";
	background-color:var(--colour);
	display:         block;
	height:          calc(1rem / 3);
	margin:          1rem 0;
	width:           calc(100% / 2);
}