codex/resources/style-formatted.css

61 lines
731 B
CSS
Raw Permalink Normal View History

#makro FG=#ddd
#makro NORMALBG=#111
#makro CODEBG=#1a1a1a
body {
2021-08-21 17:52:20 +00:00
color: FG;
background: NORMALBG;
font-family: serif;
margin: 2em;
2021-08-06 15:47:40 +00:00
max-width: 50em;
margin-left: 4em;
2021-08-06 15:47:40 +00:00
margin-right: 4em;
}
a {
2021-08-21 17:52:20 +00:00
color: FG;
text-decoration: none;
}
a:before {
content: "{";
}
a:after {
content: "}";
}
a[rel="external"]:before {
content: "[";
}
a[rel="external"]:after {
content: "]";
}
a:hover {
color: NORMALBG;
2021-08-21 17:52:20 +00:00
background: FG;
}
2021-08-06 21:05:05 +00:00
pre {
background: CODEBG;
padding: 0.5em;
}
code {
2021-08-21 17:52:20 +00:00
background: CODEBG;
padding: 0.2em;
}
hr {
width: 50%;
border-top: 0px;
text-align: left;
margin-left: 0;
}
2021-10-22 18:21:59 +00:00
table {
border-collapse: collapse;
2021-10-22 20:32:02 +00:00
padding: 50px;
2021-10-22 18:21:59 +00:00
}