Diary page selector

This commit is contained in:
2022-06-13 12:54:40 +02:00
parent bd3fe1518d
commit 6a8c1265fa
4 changed files with 86 additions and 33 deletions

View File

@ -74,3 +74,40 @@
border-radius: 20px;
border: none;
}
.pageSelector {
display: flex;
flex-direction: row;
font-family: sans-serif;
}
.pageSelector:last-of-type {
margin-top: 10px;
}
.pageSelector select {
background: var(--modal-gray); /* Transparent does not work for the dropdown */
color: var(--repl-color-link);
font-size: 1rem;
}
.pageSelector a:link, .pageSelector a:visited, .pageSelector a:hover, .pageSelector a:active {
color: var(--repl-color-link);
text-decoration: none;
}
.pageSelector a:hover {
text-decoration: underline;
}
.leftSelectSpace, .rightSelectSpace {
flex-grow: 2;
}
.leftSelectSpace {
text-align: right;
}
.rightSelectSpace {
text-align: left;
}

View File

@ -1,15 +1,19 @@
.asciidoc {
/*@import "../node_modules/@asciidoctor/core/dist/css/asciidoctor.css";*/
font-family: sans-serif;
@import "./asciidocBootSlate";
h1 {
color: var(--repl-color-link, #2ac02a);
font-size: 3em;
}
h2,
h3 {
font-weight: bold;
text-decoration: underline;
}
h2,
h3,
h4,
@ -17,18 +21,21 @@
h6 {
color: var(--repl-color, #188a18);
}
font-family: sans-serif;
#preamble {
font-style: italic;
font-size: 120%;
}
.paragraph {
line-height: 1.3;
}
tbody>tr:nth-of-type(odd), #footer {
tbody>tr:nth-of-type(odd),
#footer {
background-color: #1f2420;
}
tbody>tr:hover {
background-color: #364239;
}