1
0
mirror of https://tildegit.org/sbgodin/HtmGem.git synced 2023-08-25 13:53:12 +02:00
HtmGem/css/default/raw.css
Christophe HENRY 678778ba2c Make room for vendor CSS
* Creates a default directory for the default css.
* Changes the way to address CSS: "," used as "/" (see htmgem/css/index.gmi).
* "src" style replaces the "pre": display the source code onscreen.
* Removes the "None" style, useless after all.
* Removes the absolute stylesheet path, now always in /htmgem/css.
2022-08-02 08:41:18 +02:00

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: "=> ";
}