31 lines
458 B
CSS
31 lines
458 B
CSS
@font-face {
|
|
font-family: "notomono";
|
|
src:
|
|
local("Noto Mono"),
|
|
url("./fonts/notomono/NotoMono-Regular-webfont.woff") format("woff");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
h1, h2, h3, h4, h5, h6, p, pre, li {
|
|
font-family: "notomono", monospace;
|
|
}
|
|
p, li {
|
|
font-size: 1.5rem;
|
|
}
|
|
pre {
|
|
line-height: 0.8;
|
|
font-size: 1.2rem;
|
|
}
|
|
ul {
|
|
/*
|
|
*/
|
|
display: block;
|
|
list-style-type: "• ";
|
|
}
|
|
li {
|
|
display: list-item;
|
|
}
|
|
li::marker {
|
|
font-size: 1.2rem;
|
|
}
|