blob: 258c4ea710f972b8c3b7a8a567da9cd81dabe98a (
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
|
:root {
--black: #202020;
--darkgrey: #2B2B2B;
--lightgrey:#EAEAEA;
--white: #F4F4F4;
--red: #A50034; /* 207 C */
--yellow: #FFA400; /* 137 C */
--green: #00965E; /* 340 C */
--blue: #006BA6; /* 307 C */
--backgroundColour0:var(--black);
--backgroundColour1:var(--darkgrey);
--foregroundColour: var(--white);
--colour: var(--red);
--minimumPageWidth:12rem;
--maximumPageWidth:52rem;
font-family:"Liberation Serif","serif";
font-size: calc(1000mm / 1728 * 8);
}
* {
margin: 0;
padding:0;
}
body {
background-color:var(--backgroundColour0);
color: var(--foregroundColour);
}
|