diff options
Diffstat (limited to 'static/styles.css')
-rw-r--r-- | static/styles.css | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/static/styles.css b/static/styles.css index e84dc56..d45bdd1 100644 --- a/static/styles.css +++ b/static/styles.css @@ -275,7 +275,7 @@ header > h2 { } .pad-left, .pad-right { - width: 215px; + width: 180px; } } @@ -347,13 +347,37 @@ header > h2 { border-radius: 8px; } ::-webkit-scrollbar-thumb:hover{ - background: var(--primary-bg); + background: #059233; } ::-webkit-scrollbar-track{ background: var(--primary-bg); border-radius: 7px; } -::-webkit-scrollbar-track:hover { +*::selection { background: var(--primary-fg); + color: var(--primary-bg); +} + +*::-moz-selection { + background: var(--primary-fg); + color: var(--primary-bg); +} + +pre { + counter-reset: line; + display: block; + border: 1px solid; + padding: 4px; +} + +code { + counter-increment: line; +} + +code:before { + content: counter(line); + margin-right: 8px; + margin-left: 4px; + -webkit-user-select: none; } |