frontpage/styles/customAsciidoc.scss

65 lines
1.0 KiB
SCSS
Raw Normal View History

2022-02-04 23:29:26 +01:00
.asciidoc {
2022-06-13 12:54:40 +02:00
font-family: sans-serif;
2022-02-04 23:29:26 +01:00
@import "./asciidocBootSlate";
2022-06-14 16:44:00 +02:00
@import "~highlight.js/scss/atom-one-dark";
2022-06-13 12:54:40 +02:00
2022-02-04 23:29:26 +01:00
h1 {
color: var(--repl-color-link, #2ac02a);
2022-06-14 14:37:17 +02:00
font-size: 2em;
}
h2 {
font-size: 1.5em;
}
h3 {
font-size: 1.2em;
}
h4 {
font-size: 1.1em;
2022-02-04 23:29:26 +01:00
}
2022-06-13 12:54:40 +02:00
2022-02-04 23:29:26 +01:00
h2,
h3 {
font-weight: bold;
text-decoration: underline;
}
2022-06-13 12:54:40 +02:00
2022-02-04 23:29:26 +01:00
h2,
h3,
h4,
h5,
h6 {
color: var(--repl-color, #188a18);
}
2022-06-13 12:54:40 +02:00
2022-02-04 23:29:26 +01:00
#preamble {
font-style: italic;
font-size: 120%;
}
2022-06-13 12:54:40 +02:00
2022-02-09 18:59:36 +01:00
.paragraph {
line-height: 1.3;
}
2022-06-13 12:54:40 +02:00
tbody>tr:nth-of-type(odd),
#footer {
2022-02-09 18:59:36 +01:00
background-color: #1f2420;
}
2022-06-13 12:54:40 +02:00
2022-02-09 18:59:36 +01:00
tbody>tr:hover {
background-color: #364239;
}
2022-06-14 16:44:00 +02:00
pre {
background-color: #282c34;
border: 1px solid var(--repl-color-hint, #188a18);
padding: 1px;
2022-06-14 16:47:11 +02:00
color: #abb2bf;
2022-06-14 16:44:00 +02:00
}
code {
background-color: #282c34;
color: #abb2bf;
}
2022-02-04 23:29:26 +01:00
}