mirror of
https://tildegit.org/sbgodin/HtmGem.git
synced 2023-08-25 13:53:12 +02:00
40 lines
581 B
CSS
40 lines
581 B
CSS
@import "base.css";
|
|
|
|
body {
|
|
background-color: white;
|
|
color: black;
|
|
font-family: mono;
|
|
}
|
|
|
|
p, h1, h2, h3, ul, li, pre, blockquote {
|
|
color: black;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-weight: normal;
|
|
}
|
|
|
|
ul { list-style: none; }
|
|
li:before { content: "* "; }
|
|
h1:before { content: "# "; }
|
|
h2:before { content: "## "; }
|
|
h3:before { content: "### "; }
|
|
|
|
blockquote :before { content: "> "; }
|
|
|
|
pre {
|
|
scrollbar-color: lightgrey white;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a, a:visited {
|
|
color: black;
|
|
}
|
|
|
|
a:before {
|
|
content: "=> ";
|
|
}
|