diff options
author | NielsCoding <n.stunnebrink@student.avans.nl> | 2022-11-19 18:49:05 +0100 |
---|---|---|
committer | NielsCoding <n.stunnebrink@student.avans.nl> | 2022-11-19 18:49:05 +0100 |
commit | e8ed815597c29e4206a6bae120575e2963c80837 (patch) | |
tree | 85517752e8cc580c1f1e0095934ef24ebaa64ed3 /docs/gen/style.css | |
parent | d51b56c2803cc755cd099a8f2cfef7acdcb30cfa (diff) | |
parent | 27ef32dd82d69d2c8cdcae96cab713696399a281 (diff) |
Merge branch 'master' of https://github.com/lonkaars/avans-domotica
Diffstat (limited to 'docs/gen/style.css')
-rw-r--r-- | docs/gen/style.css | 55 |
1 files changed, 42 insertions, 13 deletions
diff --git a/docs/gen/style.css b/docs/gen/style.css index 601cbc6..7474846 100644 --- a/docs/gen/style.css +++ b/docs/gen/style.css @@ -7,6 +7,7 @@ content: counter(page); } } + html, body { width: 100%; margin: 0; @@ -17,6 +18,12 @@ font-size: 11pt; } + a { + text-decoration: none; + color: unset; + font-style: italic; + } + pre, code { font-family: "JetBrainsMono Nerd Font"; font-size: 9pt; @@ -29,6 +36,7 @@ figcaption, p { text-align: justify; text-justify: auto; + hyphens: auto; } table { @@ -46,19 +54,40 @@ border-bottom: 1pt solid black; } - .docintro p { - display: flex; - flex-direction: row; - justify-content: space-between; - margin: 0; - } + .docintro { + display: flex; + flex-direction: row; + justify-content: space-between; + margin: 0; + } + + .docintro .left, + .docintro .right { + display: block; + } - .docintro .left, - .docintro .right { - display: block; - } + .docintro .right { + text-align: right; + } - .docintro .right { - text-align: right; - } + .pagebr { + break-before: page; + } + + nav ol { + counter-reset: item; + list-style-type: none; + } + + nav li { + position: relative; + counter-increment: item; + } + + nav li::before { + position: absolute; + transform: translateX(-100%) translateX(-5pt); + left: 0; + content: attr(heading-num-fix); + } } |