blob: 4ff282695e9ca3d4bc415dab1b1acf719d776515 (
plain) (
tree)
|
|
:root {
--black: #2E2E2E;
--white: #FCF9F9;
--red: #A6192E; /* 187 C */
--yellow:#FFA400; /* 137 C */
--green: #00965E; /* 340 C */
--blue: #006BA6; /* 307 C */
--backgroundColour:var(--black);
--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(--backgroundColour);
color: var(--foregroundColour);
}
|