more tests and some fixes

This commit is contained in:
Dennis Eichhorn 2024-04-24 03:20:47 +00:00
parent 19695e484e
commit 0d71204705
5 changed files with 31 additions and 2 deletions

View File

@ -11,6 +11,10 @@ article {
line-height: 2rem; line-height: 2rem;
white-space: normal; white-space: normal;
.mermaid {
text-align: center;
}
del, ins, mark { del, ins, mark {
padding: 3px; padding: 3px;
text-decoration: none; text-decoration: none;

View File

@ -1,3 +1,5 @@
// @questions it seems stupid to have ipt-wrap, flex-line, simple-flex and input-control
// I have the feeling we maybe only need 1 or 2 of these (input-control has nice behavior)
.ipt-wrap { .ipt-wrap {
display: table; display: table;
vertical-align: top; vertical-align: top;
@ -24,6 +26,7 @@
align-items: center; align-items: center;
} }
// @question consider to replace with input-control which has better behavior
.flex-line { .flex-line {
display: flex; display: flex;
flex-direction: row; flex-direction: row;

View File

@ -85,4 +85,25 @@
.nav-trigger:checked ~ main { .nav-trigger:checked ~ main {
display: none !important; display: none !important;
} }
} }
.content-side-nav {
h1, h2, a {
font-size: .9rem;
}
h1, h2 {
padding: .5rem 1rem .5rem 1rem;
background: var(--thead-bg);
color: var(--thead-c);
}
a {
padding: .5rem 1rem .5rem 2rem;
display: block;
&:hover {
color: var(--link-c);
}
}
}

File diff suppressed because one or more lines are too long

View File

@ -2,6 +2,7 @@
cursor: pointer; cursor: pointer;
color: var(--box-hl); color: var(--box-hl);
font-size: .9rem; font-size: .9rem;
display: inline-flex;
&:hover, &:active, &:focus { &:hover, &:active, &:focus {
position: relative; position: relative;