summaryrefslogblamecommitdiff
path: root/css/root.css
blob: 4ff282695e9ca3d4bc415dab1b1acf719d776515 (plain) (tree)
1
2
3
4
5
6
7
8
       
                         
                         
                                     


                                     
 





                                        




                                               
   




                  

                                                 
 
: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);
}