blob: 19feeaf5c677b3bd3e0c73ce4d0409cda0fe1c1e (
plain) (
tree)
|
|
/* Fonts */
/* Linux Libertine */
@font-face {
font-family: 'Linux Libertine';
src: url('/fonts/LinLibertine_R.woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Linux Libertine';
src: url('/fonts/LinLibertine_RI.woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Linux Libertine';
src: url('/fonts/LinLibertine_RB.woff');
font-weight: bold;
font-style: normal;
}
/* Linux Biolinum */
@font-face {
font-family: 'Linux Biolinum';
src: url('/fonts/linbio-r-subset.woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Linux Biolinum';
src: url('/fonts/linbio-ri-subset.woff');
font-weight: normal;
font-style: italic;
}
@font-face {
font-family: 'Linux Biolinum';
src: url('/fonts/linbio-rb-subset.woff');
font-weight: bold;
font-style: normal;
}
/* Inconsolata */
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 400;
src: url('/fonts/Inconsolata-Normal.woff');
}
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 700;
src: local('Inconsolata Bold'), local('Inconsolata-Bold'), url('/fonts/Inconsolata-Bold.woff');
}
/* Main body */
body {
color: black;
font-size: 16px;
margin: 0px auto 0px auto;
width: 700px;
background-color: #f2eff4;
font-family: 'Linux Libertine',serif;
line-height: 140%;
text-rendering: optimizeLegibility;
}
h1, h2, h3 {
font-family: 'Linux Biolinum',sans;
}
header {
border-bottom: 2px solid black;
margin-bottom: 30px;
padding: 12px 0px 12px 0px;
font-family: 'Linux Biolinum',sans;
}
nav {
font-family: 'Linux Biolinum',sans;
display: flex;
flex-direction: row;
justify-content: space-between;
}
nav a {
color: black;
font-size: 18px;
margin-left: 12px;
text-decoration: none;
}
footer {
border-top: solid 2px black;
color: #555;
font-size: 14px;
margin-top: 30px;
padding: 12px 0px 12px 0px;
}
footer li {
list-style-type: none;
margin-top: 10px;
}
footer li a {
margin-left: 5px;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 20px;
}
pre {
font-family: "Inconsolata",monospace;
}
code {
font-family: "Inconsolata",monospace;
}
article .header {
color: #555;
font-size: 14px;
font-style: italic;
}
.simple-icon {
height: 22px;
vertical-align: middle;
}
a {
color: #5b6ee1;
}
a:hover {
color: #306082;
background-color: #f3f3f3;
}
a:visited {
color: #306082;
}
/* Hakyll source code syntax highlighter */
table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode, table.sourceCode pre {
margin: 0;
padding: 0;
border: 0;
vertical-align: baseline;
border: none;
}
td.lineNumbers {
border-right: 1px solid #AAAAAA;
text-align: right;
color: #AAAAAA;
padding-right: 5px;
padding-left: 5px;
}
td.sourceCode {
padding-left: 5px;
}
.sourceCode span.kw {
color: #007020;
font-weight: bold;
}
.sourceCode span.dt {
color: #902000;
}
.sourceCode span.dv {
color: #40a070;
}
.sourceCode span.bn {
color: #40a070;
}
.sourceCode span.fl {
color: #40a070;
}
.sourceCode span.ch {
color: #4070a0;
}
.sourceCode span.st {
color: #4070a0;
}
.sourceCode span.co {
color: #60a0b0;
font-style: italic;
}
.sourceCode span.ot {
color: #007020;
}
.sourceCode span.al {
color: red;
font-weight: bold;
}
.sourceCode span.fu {
color: #06287e;
}
.sourceCode span.re {
}
.sourceCode span.er {
color: red;
font-weight: bold;
}
|