lectures.alex.balgavy.eu

Lecture notes from university.
git clone git://git.alex.balgavy.eu/lectures.alex.balgavy.eu.git
Log | Files | Refs | Submodules

style.css (581B)


      1 @charset 'UTF-8';
      2 
      3 body {
      4 	margin: 0px;
      5 	padding: 1em;
      6 	background: #f3f2ed;
      7 	font-family: 'Lato', sans-serif;
      8 	font-size: 12pt;
      9 	font-weight: 300;
     10 	color: #8A8A8A;
     11 	padding-left: 50px;
     12 }
     13 h1 {
     14 	margin: 0px;
     15 	padding: 0px;
     16 	font-weight: 300;
     17 	text-align: center;
     18 }
     19 ul.toc li {
     20 	margin: 8px 0;
     21 }
     22 h3.name {
     23 	font-style: italic;
     24 	text-align: center;
     25 	font-weight: 300;
     26 	font-size: 20px;
     27 }
     28 a {
     29 	color: #D1551F;
     30 }
     31 a:hover {
     32 	color: #AF440F;
     33 }
     34 strong {
     35 	font-weight: 700;
     36 	color: #2A2A2A;
     37 }
     38 td,th,table {
     39 	border: 1px solid #AAA;
     40 	border-collapse: collapse;
     41 }
     42 th,td {
     43 	padding: 0.5em;
     44 }
     45