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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
/* Custom stylesheet based on pandoc.css */
/* Author: John MacFarlane */
/* http://johnmacfarlane.net/pandoc/demo/pandoc.css */
/* Modifications by Johan van der Knijff */
body {
margin: auto;
padding-right: 1em;
padding-left: 1em;
max-width: 40em;
font-family: Verdana, sans-serif;
font-size: 100%;
line-height: 1.3;
color: #000;
}
pre {
border: 1px dotted gray;
background-color: #ececec;
color: #1111111;
padding: 0.5em;
}
code {
font-family: monospace;
}
a{
color: #000;
}
h1 a, h2 a, h3 a, h4 a, h5 a {
text-decoration: none;
color: #000;
}
h1, h2, h3, h4, h5 { font-family: verdana;
font-weight: bold;
color: #000; }
h1 {
font-size: 160%;
padding-top: 2em;
padding-bottom: 0.5em;
}
h2 {
font-size: 110%;
padding-top: 0.5em;
}
h3 {
font-size: 95%;
}
h4 {
font-size: 90%;
font-style: italic;
}
h5 {
font-size: 90%;
font-style: italic;
}
h1.title {
font-size: 200%;
font-weight: bold;
padding-top: 0.2em;
padding-bottom: 0.2em;
text-align: left;
border: none;
}
li a{
color: #000;
}
dt code {
font-weight: bold;
}
dd p {
margin-top: 0;
}
table{
border-collapse: collapse;
}
table th {
font-weight: bold;
}
table th, td {
border: 1px solid #ccc;
padding: 6px 13px;
}
table tr {
border-top: 1px solid #ccc;
/*background-color: #fff; */
}
figure figcaption{
font-style:italic;
margin-top: 10px;
margin-bottom: 20px;
text-align: left;}
#footer {
padding-top: 1em;
font-size: 70%;
color: gray;
text-align: center;
}
math, math[mode="inline"] {
display: inline;
font-family: CMSY10, CMEX10, Symbol, Times;
font-style: normal;
}
math[mode="display"] {
display: block;
text-align: center;
font-family: CMSY10, CMEX10, Symbol, Times;
font-style: normal;
}
|