templates/style.css
author František Kučera <franta-hg@frantovo.cz>
Tue, 14 Jul 2020 16:42:04 +0200
branchv_0
changeset 67 78eca0b3ab5f
parent 63 20eed1382726
child 72 2e86632f5aef
permissions -rw-r--r--
style: change font to more classic Computer Modern (CMU) + change the anchor symbol

@font-face {
        font-family: "CMU Serif Roman";
        src: url("cmunrm.woff");
}

@font-face {
        font-family: "CMU Serif Bold";
        src: url("cmunbx.woff");
}

body {
	font-family: "CMU Serif Roman";
	font-size:  18px;
	background-color: white;
	color: black;
	text-align: center;
}

div#content {
	max-width: 800px;
	text-align: justify;
	margin: 0 auto;
}

h1,h2,h3 {
	font-family: "CMU Serif Bold";
	font-weight: normal;
}

h1 {
	text-align: center;
}

a.anchor {
	color:  #eee;
	text-decoration: none;
	font-size: 80%;
}

h2:hover > a.anchor, li:hover > a.anchor {
	color: #999;
	text-decoration: none;
}

li:target, div.chapter:target {
   background: #eee;
}

p.footer {
	font-size: 80%;
}

hr {
	border: 2px solid #888;
}