X-Git-Url: https://git.draconx.ca/gitweb/homepage.git/blobdiff_plain/0015d84bea1204b4534e5568ff7c0920b9ef02b7..062c731462e3ec513b470308cc2dd475098ce231:/content/style.scss diff --git a/content/style.scss b/content/style.scss index 912fe4a..5f2ef96 100644 --- a/content/style.scss +++ b/content/style.scss @@ -1,7 +1,7 @@ -/* +/*! * Nick's web site: default stylesheet * - * Copyright © 2018-2021 Nick Bowler + * Copyright © 2018-2022 Nick Bowler * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,20 +17,23 @@ * along with this program. If not, see . */ -// colour definitions -$backgroundcolour: #ffffff; -$foregroundcolour: #000000; +@import "lib/colourmap.scss"; -$linkdefaultcolour: #0000cd; -$linkactivecolour: #ff0000; -$linkvisitedcolour: #800080; +@include defcolours + ( $background: #ffffff #000000 + , $foreground: #000000 #ffffff -$ruledefaultcolour: #d3d3d3; -$rulestrongcolour: #696969; + , $linkdefault: #0000cd #a3aaff + , $linkactive: #ff0000 + , $linkvisited: #800080 #e493f7 + , $focusring: #628cb2 -$annotationcolour: #708090; + , $annotation: #708090 + , $tableshade: #f5f5f5 #101010 -$tableshadecolour: #f5f5f5; + , $ruledefault: #d3d3d3 #494949 + , $rulestrong: #696969 #939393 + ); @mixin header_size($maxwidth, $fontsize) { font-size: $fontsize; @@ -38,21 +41,71 @@ $tableshadecolour: #f5f5f5; } body { - background-color: $backgroundcolour; - color: $foregroundcolour; font-family: sans-serif; margin: 1em; + + @include usecolours + ( $background-color: background + , $color: foreground + ); } -a:link { color: $linkdefaultcolour; } -a:visited { color: $linkvisitedcolour; } -a:active { color: $linkactivecolour; } +a:link { + @include usecolours($color: linkdefault, $border-color: linkdefault); +} +a:visited { + @include usecolours($color: linkvisited, $border-color: linkvisited); +} +a:active { + @include usecolours($color: linkactive, $border-color: linkactive); +} + +@supports (outline-style: auto) { + a:link { border-width: 0; } + a:focus { @include usecolour(outline, focusring, auto); } + li, td, dt { &>a:link { border: solid 1px transparent; } } +} h1 { @include header_size(60em, 2em); } h2 { @include header_size(60em, 1.5em); } h5 { @include header_size(60em, 1em); } -p>img { max-width: 40em; width: 100%; height: auto; } +@supports (display: grid) { + .gallery { + display: grid; + grid-column-gap: 1em; + grid-template-columns: repeat( auto-fill, minmax(18em, 1fr) ); + align-items: center; + + p.img { margin: 0.5em 0; } + } +} + +p.img { + text-align: center; + + img { + vertical-align: bottom; + max-width: 40em; + width: 100%; + height: auto; + } + + a { + text-decoration: none; + display: inline-block; + border: solid 2px; + } + + small { + @include usecolours($color: foreground); + text-align: justify; + @media (max-width: 24em) { text-align: left; } + padding: 0.5ex; + display: block; + font-size: 0.9em; + } +} p, dt, dd, li { text-align: justify; @@ -80,7 +133,7 @@ hr { clear: both; margin: 0.5em 0; border: 0; - border-top: 1px solid $ruledefaultcolour; + @include usecolour(border-top, ruledefault, 1px solid); } kbd { @@ -98,16 +151,17 @@ kbd { } .permalink { + @include usecolours($color: annotation); font-size: small; - color: $annotationcolour; a:link, a:visited { color: inherit; } + a:active { @include usecolours($color: linkactive); } @media not screen { visibility: hidden; } } // General table styles. table { - border: 1px solid $ruledefaultcolour; + @include usecolour(border-top, ruledefault, 1px solid); border-collapse: collapse; width: 100%; } @@ -128,18 +182,20 @@ td, th { margin: 0; } -thead>tr, tbody>tr { border: solid $ruledefaultcolour; } -th, thead>tr { border-bottom: 1px solid $rulestrongcolour; } -tbody+tbody { border-bottom: 1px solid $ruledefaultcolour; } +thead>tr, tbody>tr { @include usecolour(border, ruledefault, solid); } +th, thead>tr { @include usecolour(border-bottom, rulestrong, 1px solid); } +tbody+tbody { @include usecolour(border-bottom, ruledefault, 1px solid); } *>table, *>th { border: none; } thead>tr { border-width: 1px; } tbody>tr { border-width: 0 1px; } -td + td { box-shadow: -1px 0 $backgroundcolour; } +td + td { + @include usecolour(box-shadow, background, -1px 0); +} tbody>tr { - &:nth-of-type(even) { background-color: $tableshadecolour; } - &:last-child { border-bottom: solid 1px $ruledefaultcolour; } + &:nth-of-type(even) { @include usecolours($background-color: tableshade); } + &:last-child { @include usecolour(border-bottom, ruledefault, solid 1px); } } // Specific table styles @@ -240,10 +296,6 @@ $clickynames: name, date, size; } } - &:focus ~ table th.clicky-#{$col}>label~label>span:first-child { - border-color: $foregroundcolour; - } - // Unhide to allow keyboard navigation display: block !important; pointer-events: none; @@ -264,50 +316,61 @@ $clickynames: name, date, size; } } - &:focus ~ table th.clicky-#{$col}>label~label .svg { - border-color: $foregroundcolour; - } - pointer-events: none; position: absolute; opacity: 0; z-index: -2; } - th.clicky-#{$col}>label { - white-space: nowrap; - cursor: pointer; - line-height: 1.5em; + $focuslabel: ":focus ~ table th.clicky-#{$col}>label~label"; + #{"input.clicky-#{$col+$focuslabel}"}>span:first-child + , #{"input.clicky-#{$col}-rev#{$focuslabel}"} .svg + { + @include usecolours($border-color: foreground); + @at-root { @supports (outline-style: auto) { & { + @include usecolour(outline, focusring, auto); + border-color: transparent; + }}} + } +} - &>* { - display: -moz-inline-box; - display: inline-block; - border: 1px dotted transparent; - vertical-align: middle; - } +thead.clicky label { + white-space: nowrap; + line-height: 1.5em; + cursor: pointer; - // Expand the first label a bit so the table (hopefully) - // does not reshape as columns are selected. - &:first-child { - margin-right: 1.75em; - padding-right: 2px; - } + &>* { + display: -moz-inline-box; + display: inline-block; + border: 1px dotted transparent; + vertical-align: middle; + } - &:active { color: $linkactivecolour; } - &:first-child:active>span, &~label:active>.svg { - border-color: $linkactivecolour; - } + // Expand the first label a bit so the table (hopefully) + // does not reshape as columns are selected. + &:first-child { + margin-right: 1.75em; + padding-right: 2px; + } - .svg { - margin-left: 0.25em; - } + &:active { @include usecolours($color: linkactive); } + &:first-child:active>span, &~label:active>.svg { + @include usecolours($border-color: linkactive); + @at-root { @supports (outline-style: auto) { & { + @include usecolour(outline, focusring, auto); + border-color: transparent; + }}} + } - .svg, svg, img.svgfallback { - height: 1.5em; - width: auto; - } - .svg svg { width: 1.5em; } + .svg { + margin-left: 0.25em; + } + + .svg, svg, img.svgfallback { + height: 1.5em; + width: auto; } + .svg svg { width: 1.5em; } } table.filelist { @@ -319,6 +382,7 @@ table.filelist { tbody { .svg, svg, img.svgfallback { + vertical-align: middle; height: 1.5em; width: auto; } @@ -363,9 +427,11 @@ table.filelist { } } -#footer p { color: $annotationcolour; } +#footer p { @include usecolours($color: annotation); } #article-info p { font-style: italic; } +.wbr:after { content: "\200b"; } + // "unordered" lists with explicit ordering in content ul.ordered > { li { list-style: none; } @@ -387,3 +453,18 @@ ul.ordered > { #sitetitle * { float: none; } #footer { padding: 0 1em; } } + +// page-specific dark mode styles +@media (min-width: 35em) { + #page_weblog_responsive_tables { + @each $tN in t6 t7 t8 { + ##{$tN}>tbody>tr.#{$tN}-split { + @include usecolour_var_(border-bottom, ruledefault); + + &:nth-of-type(odd) ~ tr:nth-of-type(odd) { + @include usecolour_var_(background-color, tableshade); + } + } + } + } +}