2022-03-26 19:32:22 +00:00
|
|
|
/* CSS that adds the bare minimum for a simple layout.
|
|
|
|
* Nothing here exists purely for aesthetics except the unstyled-list;
|
|
|
|
* everything else addresses a specific a11y, compatibility, or critical
|
2022-04-03 06:54:39 +00:00
|
|
|
* usability need.
|
2022-04-27 15:41:36 +00:00
|
|
|
* I also don't use any classes besides "unstyled-list" and "pix". My
|
2022-04-27 05:39:12 +00:00
|
|
|
* HTML contains microformats2 classnames for IndieWeb parsers, but I
|
2022-04-27 15:41:36 +00:00
|
|
|
* don't actually use those for styling. */
|
2020-12-27 05:04:25 +00:00
|
|
|
|
2022-03-26 19:33:01 +00:00
|
|
|
html {
|
2022-03-26 19:32:22 +00:00
|
|
|
/* Mobile screens benefit from greater line-spacing so links are
|
|
|
|
* further apart. Dyslexic users prefer the spacing too.
|
|
|
|
* <100dpi screens: sans-serif is better. Why did browsers settle
|
2022-03-28 00:21:13 +00:00
|
|
|
* on serif being the default?? */
|
2022-04-06 03:20:56 +00:00
|
|
|
font: 100%/1.5 sans-serif;
|
2021-06-27 02:35:49 +00:00
|
|
|
}
|
|
|
|
|
2022-04-27 15:41:36 +00:00
|
|
|
/* This should not take effect on printouts, to save paper. */
|
2022-03-28 00:21:13 +00:00
|
|
|
@media screen {
|
2022-04-27 15:41:36 +00:00
|
|
|
body {
|
2022-04-22 05:31:38 +00:00
|
|
|
/* Default font sizes are one-size-fits-all; they're optimized for a
|
|
|
|
* wide variety of complex pages. For single-column websites like
|
2022-04-26 00:37:23 +00:00
|
|
|
* mine, it's ideal to bump it up ever so slightly. This also makes
|
|
|
|
* <sup>, <sub>, <small>, etc. large enough to have decent contrast with
|
|
|
|
* minimal adjustment.
|
2022-04-22 05:31:38 +00:00
|
|
|
* Only do this on screen, since printouts already improve legibility
|
|
|
|
* and cost paper + ink. */
|
2022-04-27 00:29:05 +00:00
|
|
|
font-size: 105%;
|
2022-04-23 22:35:08 +00:00
|
|
|
|
2022-04-27 15:41:36 +00:00
|
|
|
/* Aligning to the center with space on both sides prevents accidental
|
|
|
|
* link activation on tablets. */
|
|
|
|
margin: auto;
|
|
|
|
|
|
|
|
/* WCAG recommends a max line width. Not everyone can resize the
|
|
|
|
* viewport.
|
|
|
|
* 45em is the lowest reasonable width for titles, nav, footers, etc */
|
2022-04-23 22:35:08 +00:00
|
|
|
max-width: 45em;
|
2022-05-02 00:04:20 +00:00
|
|
|
padding: 0 3%;
|
2022-03-28 00:21:13 +00:00
|
|
|
}
|
|
|
|
|
2022-04-14 01:19:49 +00:00
|
|
|
/* 45em is too wide for long body text. */
|
2022-04-26 00:37:23 +00:00
|
|
|
div[itemprop="articleBody"] {
|
2022-03-28 00:21:13 +00:00
|
|
|
margin: auto;
|
|
|
|
max-width: 38em;
|
|
|
|
}
|
2022-03-26 19:32:22 +00:00
|
|
|
}
|
|
|
|
|
2022-04-27 15:41:36 +00:00
|
|
|
/* Small text is easier to read when slightly bolder.
|
|
|
|
* This is important in the dark theme where I set my own colors and
|
|
|
|
* try to maintain good perceptual contrast even for small text, but
|
|
|
|
* I don't want toggling the theme to impact anything besides color so
|
|
|
|
* I set the weight here. */
|
|
|
|
sup {
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2022-04-07 22:19:34 +00:00
|
|
|
/* narrow screens: reduce margin for blockquotes a lot, using
|
2022-04-14 01:19:49 +00:00
|
|
|
* a thick left-side border instead. */
|
2022-04-07 22:19:34 +00:00
|
|
|
blockquote {
|
2022-04-16 21:34:30 +00:00
|
|
|
border-left: 4px solid;
|
2022-04-07 22:19:34 +00:00
|
|
|
margin: 0;
|
2022-04-26 05:11:18 +00:00
|
|
|
padding-left: .8em;
|
2022-04-03 06:54:39 +00:00
|
|
|
}
|
2022-03-31 00:44:39 +00:00
|
|
|
|
2022-04-24 19:35:07 +00:00
|
|
|
/* narrow screens: reduce list indentation
|
|
|
|
* touch screens: lists of links should be
|
|
|
|
* easy to tap so give them some spacing. */
|
2022-04-24 03:27:35 +00:00
|
|
|
dd,
|
|
|
|
ol,
|
|
|
|
ul {
|
2022-04-14 01:42:52 +00:00
|
|
|
padding-left: 1.5em;
|
|
|
|
}
|
|
|
|
|
2022-04-24 03:29:17 +00:00
|
|
|
dd {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2022-04-26 05:11:18 +00:00
|
|
|
ol ol,
|
|
|
|
ul ul {
|
|
|
|
hyphens: auto;
|
2022-04-27 15:41:36 +00:00
|
|
|
padding-left: 1em;
|
2022-04-26 05:11:18 +00:00
|
|
|
}
|
|
|
|
|
2022-04-14 01:42:52 +00:00
|
|
|
/* Narrow screens: allow hyphenating titles
|
|
|
|
* I can't add soft hyphens to these. */
|
|
|
|
h1 {
|
|
|
|
hyphens: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Very narrow screens: full hyphenation */
|
2022-04-26 00:37:23 +00:00
|
|
|
@media (max-width: 11.6em) {
|
2022-04-14 01:42:52 +00:00
|
|
|
article,
|
|
|
|
h2,
|
|
|
|
h3 {
|
|
|
|
hyphens: auto
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-30 00:53:19 +00:00
|
|
|
/* Compensate for misalignment caused by a padding increase. */
|
2022-05-02 00:04:20 +00:00
|
|
|
header nav {
|
|
|
|
margin-left: -.375em;
|
|
|
|
}
|
|
|
|
|
2022-04-30 00:53:19 +00:00
|
|
|
footer nav {
|
2022-05-02 00:04:20 +00:00
|
|
|
margin: -.375em;
|
|
|
|
}
|
|
|
|
|
2022-05-02 04:24:17 +00:00
|
|
|
nav li {
|
|
|
|
line-height: 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Increase nav link tap target size a bit */
|
|
|
|
nav li a,
|
|
|
|
nav li a {
|
|
|
|
padding: .125em;
|
|
|
|
}
|
|
|
|
|
2022-05-02 00:04:20 +00:00
|
|
|
/* Save some space and paper by making the nav single-line, but bump
|
|
|
|
* up the line-height to increase space between tap-targets (a11y) */
|
|
|
|
header nav li,
|
|
|
|
footer nav li {
|
2022-05-02 04:24:17 +00:00
|
|
|
margin: .25em;
|
2022-05-02 00:04:20 +00:00
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lists without bullets: navlinks, posts lists, webmentions.
|
|
|
|
* Those three are lists whose items are already easily distinguishable,
|
|
|
|
* rendering bullet points as unnecessary extra visual noise. Pretty
|
|
|
|
* much the only purely-aesthetic change in this CSS file. */
|
|
|
|
.unstyled-list {
|
|
|
|
padding: 0;
|
2022-04-30 00:53:19 +00:00
|
|
|
}
|
|
|
|
|
2022-05-02 00:04:20 +00:00
|
|
|
.unstyled-list li {
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-04-19 02:54:40 +00:00
|
|
|
/* <kbd> should be distinguished from <code> and surrounding text
|
2022-04-14 01:19:49 +00:00
|
|
|
* in a way beyond font-face; at least two visual distinctions needed */
|
|
|
|
kbd {
|
2022-04-03 06:54:39 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2022-04-26 00:37:23 +00:00
|
|
|
/* narrow screens: remove unused figure margins
|
2022-04-26 05:11:18 +00:00
|
|
|
* figure captions shouldn't look like regular paragraphs; there should
|
|
|
|
* be some extra space. */
|
2022-04-09 04:02:06 +00:00
|
|
|
figure {
|
2022-04-26 05:11:18 +00:00
|
|
|
margin: 1.5em 0;
|
2022-02-28 22:18:21 +00:00
|
|
|
}
|
|
|
|
|
2022-04-14 01:19:49 +00:00
|
|
|
/* figcaptions should be distinct from surrounding paragraphs tho */
|
2022-04-09 04:02:06 +00:00
|
|
|
figure:not([itemtype]) figcaption {
|
2022-04-26 05:28:10 +00:00
|
|
|
margin: 0 10%;
|
2022-04-09 04:02:06 +00:00
|
|
|
}
|
|
|
|
|
2022-03-29 01:11:21 +00:00
|
|
|
/* browsers make monospace small and unreadable for some dumb legacy
|
|
|
|
* reason and this somehow fixes that without overriding the user's
|
|
|
|
* font size preferences. */
|
2021-06-27 02:35:49 +00:00
|
|
|
code,
|
2022-04-07 06:42:10 +00:00
|
|
|
kbd,
|
|
|
|
samp {
|
2021-06-27 02:35:49 +00:00
|
|
|
font-family: monospace, monospace;
|
|
|
|
}
|
|
|
|
|
2022-02-28 23:05:14 +00:00
|
|
|
/* Narrow screens: long words can cause content to flow out of the
|
|
|
|
* viewport, triggering horizontal scrolling. Allow breaking words in
|
2022-04-26 05:11:18 +00:00
|
|
|
* content I don't control (comments, names). For content I do control,
|
|
|
|
* I just add soft hyphens to the HTML. */
|
2022-04-26 00:37:23 +00:00
|
|
|
li[itemprop="comment"],
|
2022-04-26 05:11:18 +00:00
|
|
|
:not(pre) > code,
|
|
|
|
:not(pre) > samp,
|
|
|
|
span[itemtype="https://schema.org/Person"] {
|
2022-02-27 01:18:44 +00:00
|
|
|
overflow-wrap: break-word;
|
|
|
|
|
2022-02-28 23:05:14 +00:00
|
|
|
/* borders shouldn't touch text */
|
|
|
|
padding: 0 0.1em;
|
2020-11-25 01:09:26 +00:00
|
|
|
}
|
2020-11-30 21:17:15 +00:00
|
|
|
|
2022-03-29 01:11:21 +00:00
|
|
|
/* Narrow screens: allow horizontal scroll in a pre block. */
|
2020-12-12 10:42:45 +00:00
|
|
|
pre {
|
2022-03-29 01:11:21 +00:00
|
|
|
overflow: auto;
|
2022-04-26 05:11:18 +00:00
|
|
|
padding: .5em;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
2022-02-28 23:05:14 +00:00
|
|
|
|
|
|
|
/* Distinguish images from the background in case their color is
|
|
|
|
* too similar to the page background color. Also put a border around
|
2022-03-31 00:44:39 +00:00
|
|
|
* <pre> and <code> to distinguish them in ways besides font-family. The
|
|
|
|
* use of borders in place of background colors for distinguishing
|
|
|
|
* elements is an officially documented WCAG technique. */
|
2022-02-28 23:05:14 +00:00
|
|
|
img,
|
|
|
|
pre,
|
2022-04-26 05:11:18 +00:00
|
|
|
:not(pre) > code,
|
|
|
|
:not(pre) > samp {
|
2022-04-14 01:19:49 +00:00
|
|
|
border: 1px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* A black border is too harsh. */
|
2022-04-26 05:11:18 +00:00
|
|
|
:not(pre) > code,
|
|
|
|
:not(pre) > samp {
|
2022-04-27 15:41:36 +00:00
|
|
|
border-color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Some images look blurry when scaled */
|
|
|
|
.pix {
|
|
|
|
image-rendering: pixelated;
|
2022-02-28 23:05:14 +00:00
|
|
|
}
|
|
|
|
|
2022-03-26 19:32:22 +00:00
|
|
|
/* center images that aren't my indieweb icon; same justification as
|
2022-03-29 01:11:21 +00:00
|
|
|
* for centering the body contents. Also makes images easier to see
|
|
|
|
* for people holding a device with one hand. */
|
2022-03-09 03:30:51 +00:00
|
|
|
img:not(.u-photo) {
|
2022-02-28 23:05:14 +00:00
|
|
|
display: block;
|
|
|
|
height: auto;
|
|
|
|
margin: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2022-03-26 19:32:22 +00:00
|
|
|
|
2022-04-03 06:54:39 +00:00
|
|
|
/* WCAG Technique C25: use borders to separate sections.
|
|
|
|
* Also use "content-visibility: auto" to improve performance by
|
|
|
|
* reducing the number of DOM nodes rendered at once. */
|
|
|
|
footer,
|
2022-04-25 15:49:13 +00:00
|
|
|
div[role="doc-endnotes"] {
|
2022-04-11 03:41:35 +00:00
|
|
|
border-top: 1px solid;
|
2022-04-03 06:54:39 +00:00
|
|
|
content-visibility: auto;
|
|
|
|
}
|
|
|
|
|
2022-04-14 01:19:49 +00:00
|
|
|
/* Some browser focus indicators are inaccessible; override them with
|
|
|
|
* something more visible. See WCAG 2.x SC 2.4.12. I also tried to
|
|
|
|
* match browser behavior; mainstream browsers use :focus-visible
|
|
|
|
* instead of focus but older/simpler browsers only support :focus.
|
|
|
|
* I borrowed these directives from
|
|
|
|
* https://www.tempertemper.net/blog/refining-focus-styles-with-focus-visible
|
|
|
|
* */
|
|
|
|
|
|
|
|
/* For browsers that don't support :focus-visible */
|
|
|
|
a:focus,
|
2022-04-27 15:41:36 +00:00
|
|
|
summary:focus,
|
|
|
|
pre[tabindex]:focus {
|
2022-04-14 01:19:49 +00:00
|
|
|
outline: 3px solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove :focus styling for browsers that do support :focus-visible */
|
|
|
|
@supports selector(:focus-visible) {
|
|
|
|
a:focus:not(:focus-visible),
|
2022-04-27 15:41:36 +00:00
|
|
|
summary:focus:not(:focus-visible),
|
|
|
|
pre[tabindex]:focus:not(:focus-visible) {
|
2022-04-14 01:19:49 +00:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add focus styling back in browsers that do support :focus-visible */
|
|
|
|
:focus-visible {
|
|
|
|
outline: 3px solid;
|
|
|
|
}
|
|
|
|
|
2022-03-26 19:32:22 +00:00
|
|
|
/* Todo:
|
|
|
|
* - Some browsers don't scale SVGs properly; the img container
|
|
|
|
* dimensions crop the image rather than scale it. Investigate
|
|
|
|
* if this only applies to Internet Explorer or if it applies to
|
|
|
|
* other uncommon browsers too. If any non-IE browsers do this and/or
|
|
|
|
* if the spec allows this behavior, try to correct it here.
|
|
|
|
* - Wait till Webkit fixes its broken-ass default dark stylesheet
|
|
|
|
* then consider trimming the dark stylesheet I provide.
|
2022-04-14 01:19:49 +00:00
|
|
|
* */
|