HtmGem/css/default/black_wide.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

41 lines
465 B
CSS

@import "base.css";
html {
background-color:#000;
}
body {
max-width: none;
margin: 0.5em 5em 2em 5em;
}
p, ul {
color: #ccc;
}
h1, h2, h3 {
color: #ddd;
}
blockquote {
background-color: #222;
border-left: 3px solid #444;
margin: 1rem -1rem 1rem calc(-1rem - 3px);
padding: 1rem;
}
a {
color:#ddd;
}
a:visited {
color: #888;
}
pre {
color: #ccc;
scrollbar-color: #222 #000;
background-color: #222;
}