Files
WEBSITE_hugulumu/styles/text.css
asus 0dfafb81d2 - made font available on all elements with body and pre
- added an example for later better accessibility with pre
2023-11-17 18:10:01 +01:00

28 lines
391 B
CSS

@font-face {
font-family: "notomono";
src:
url("./fonts/notomono/NotoMono-Dot.woff") format("woff");
font-weight: normal;
font-style: normal;
}
/*
*/
body, pre {
font-family: "notomono", monospace;
font-size: 1.5rem;
font-weight: normal;
font-style: normal;
}
ul {
/*
*/
display: block;
list-style-type: "• ";
}
li {
display: list-item;
}
li::marker {
font-size: 1.2rem;
}