2022-06-03 22:47:14 +00:00
|
|
|
/* CSS that adds the bare minimum for a simple, accessible,
|
|
|
|
* touch-friendly layout.
|
2022-05-04 05:09:14 +00:00
|
|
|
* Nothing here exists purely for aesthetics; everything addresses a
|
|
|
|
* specific a11y, compatibility, or critical
|
2022-04-03 06:54:39 +00:00
|
|
|
* usability need.
|
2022-05-04 05:09:14 +00:00
|
|
|
*
|
2022-05-27 00:23:51 +00:00
|
|
|
* One exception: I re-set the input styles so Safari wouldn't make them
|
|
|
|
* pill-shaped.
|
|
|
|
*
|
2022-05-10 00:51:44 +00:00
|
|
|
* I also don't use any classes except for image presentation. (e.g. to
|
|
|
|
* specify that an image should have pixelated rendering or be inverted
|
|
|
|
* in dark mode).
|
|
|
|
* My HTML contains microformats2 classnames for IndieWeb parsers, but I
|
|
|
|
* don't actually use those for styling.
|
2022-05-04 05:09:14 +00:00
|
|
|
*
|
|
|
|
* To keep myself from caring about minute details, I limited myself to
|
2022-06-03 22:47:14 +00:00
|
|
|
* only defining spacing in increments of .25em. Pixels are 1px or
|
2022-05-23 15:42:24 +00:00
|
|
|
* multiples of 3px. This also improves compression. No more "finding
|
|
|
|
* the perfect value".
|
2022-05-04 00:05:47 +00:00
|
|
|
*
|
2022-05-05 04:49:45 +00:00
|
|
|
* I cite WCAG 2.2 success criteria with "SC". I also tried to meet
|
|
|
|
* the Google a11y requirement of 48px tap targets separated by atl
|
|
|
|
* 8px, excluding inline links. This involved increasing font size,
|
|
|
|
* padding, line-height, and margins. */
|
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.
|
2022-05-04 00:05:47 +00:00
|
|
|
* Necessary to meet SC 1.4.8.
|
2022-03-26 19:32:22 +00:00
|
|
|
* <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;
|
2022-05-12 04:31:27 +00:00
|
|
|
/* Nearly every page on my site is taller than the viewport.
|
|
|
|
* Paint the scrollbar ASAP to prevent layout shifts. */
|
|
|
|
overflow-y: scroll;
|
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
|
2022-05-02 04:59:11 +00:00
|
|
|
* <sup>, <sub>, <small>, etc. large enough to have decent contrast
|
2022-05-04 00:05:47 +00:00
|
|
|
* with minimal adjustment, and makes tap-targets larger.
|
2022-04-22 05:31:38 +00:00
|
|
|
* Only do this on screen, since printouts already improve legibility
|
2022-05-23 15:42:24 +00:00
|
|
|
* and cost paper + ink.
|
|
|
|
* 108.75% is the minimum required to get superscripts to reach 14.5
|
|
|
|
* CSS pixels with most default stylesheets. At that size, my dark
|
|
|
|
* color palette has sufficient contrast.*/
|
|
|
|
font-size: 108.75%;
|
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
|
2022-05-04 00:05:47 +00:00
|
|
|
* link activation on tablets, and is a common practice that users are
|
2022-05-04 05:09:14 +00:00
|
|
|
* more used to for articles. */
|
2022-04-27 15:41:36 +00:00
|
|
|
margin: auto;
|
|
|
|
|
|
|
|
/* WCAG recommends a max line width. Not everyone can resize the
|
2022-05-04 00:05:47 +00:00
|
|
|
* viewport. This isn't for large blocks of text yet, so we don't have
|
|
|
|
* to go by SC 1.4.8.
|
2022-05-02 04:59:11 +00:00
|
|
|
* 45em = lowest acceptable width for titles, nav, footers, etc */
|
2022-04-23 22:35:08 +00:00
|
|
|
max-width: 45em;
|
2022-05-05 04:49:45 +00:00
|
|
|
|
|
|
|
/* Phone cases can cover the edges. Swipe-from-edge navigations
|
|
|
|
* should not conflict with the page elements. Focus outlines for
|
|
|
|
* heavily-padded nav links should not be cut-off. All three concerns
|
|
|
|
* are addressed by adding some body padding.
|
|
|
|
* I followed Google's a11y recommendations of "at least 8px space
|
|
|
|
* between tappables" by creating margins/paddings between nav links;
|
2022-05-10 00:51:44 +00:00
|
|
|
* re-use that same amount of space here. 24px is what it takes to
|
|
|
|
* create atl 48px of non-interactive space on <ul> and <ol> elements
|
2022-05-20 00:18:14 +00:00
|
|
|
* containing lists of interactives, with 8px in between.
|
2022-05-10 23:06:28 +00:00
|
|
|
* Don't use relative units here; this margin shouldn't scale with
|
|
|
|
* zoom, or else text will get narrower with zoom. */
|
2022-05-08 05:22:11 +00:00
|
|
|
padding: 0 24px;
|
2022-03-28 00:21:13 +00:00
|
|
|
}
|
|
|
|
|
2022-05-04 00:05:47 +00:00
|
|
|
/* 45em is too wide for long body text.
|
|
|
|
* Typically meets SC 1.4.8, plus or minus a few characters. */
|
2022-04-26 00:37:23 +00:00
|
|
|
div[itemprop="articleBody"] {
|
2022-03-28 00:21:13 +00:00
|
|
|
margin: auto;
|
2022-05-20 02:26:21 +00:00
|
|
|
max-width: 35em;
|
2022-03-28 00:21:13 +00:00
|
|
|
}
|
2022-05-02 22:42:57 +00:00
|
|
|
|
2022-05-12 04:31:27 +00:00
|
|
|
summary {
|
2022-05-05 05:22:38 +00:00
|
|
|
/* The tappable region of a <summary> extends across the page.
|
|
|
|
* we need to tell users that the full space is interactive.
|
|
|
|
* Use a border for that. */
|
|
|
|
border: 1px solid #999;
|
2022-05-12 04:31:27 +00:00
|
|
|
/* It's not obvious that a <summary> has button semantics.
|
|
|
|
* "cursor: pointer" is used on MDN, web.dev, GitHub, gov.uk, and
|
|
|
|
* others so it's not "novel" and won't surprise users. */
|
|
|
|
cursor: pointer;
|
2022-05-05 05:22:38 +00:00
|
|
|
}
|
|
|
|
|
2022-05-10 00:51:44 +00:00
|
|
|
/* If we have a list of disclosure widgets, we need some
|
|
|
|
* non-interactive space on the screen that's safe to tap. */
|
2022-05-27 01:00:02 +00:00
|
|
|
form,
|
2022-05-10 00:51:44 +00:00
|
|
|
li details {
|
2022-05-27 01:00:02 +00:00
|
|
|
margin: .5em 0;
|
2022-05-10 00:51:44 +00:00
|
|
|
}
|
2022-05-05 05:22:38 +00:00
|
|
|
|
2022-06-03 22:47:14 +00:00
|
|
|
/* Make superscripts a bit easier to tap. */
|
|
|
|
sup > a {
|
|
|
|
margin-left: .25em;
|
|
|
|
padding-bottom: .25em;
|
|
|
|
}
|
|
|
|
|
2022-05-19 20:21:10 +00:00
|
|
|
/* SC 2.5.5, Google a11y: Increase tap target size a bit
|
|
|
|
* - Summary is a tappable button
|
|
|
|
* - standalone links in lists are usually parts of collections of
|
|
|
|
* links that should be easy to fat-finger
|
|
|
|
* - links that directly follow h2 without being contained in a
|
|
|
|
* paragraph are section permalinks. */
|
2022-06-03 22:47:14 +00:00
|
|
|
|
|
|
|
input,
|
2022-05-20 02:26:21 +00:00
|
|
|
dt > a,
|
2022-05-12 04:31:27 +00:00
|
|
|
summary,
|
2022-05-19 20:21:10 +00:00
|
|
|
h2 + a,
|
2022-06-03 22:47:14 +00:00
|
|
|
li > a {
|
|
|
|
padding: .75em .25em;
|
|
|
|
}
|
|
|
|
/* Compensate for misalignment and wasted space caused by padding
|
|
|
|
* and margin adjustments in nav children made to meet SC 2.5.5
|
|
|
|
* Also prevent overlapping outlines on focus */
|
|
|
|
|
|
|
|
/* We've increased the padding for dt > a, but dt without a link
|
|
|
|
* should take up as much space. */
|
|
|
|
dt {
|
|
|
|
margin: .75em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
dt > a {
|
|
|
|
margin: -.75em 0 -.75em -.25em;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
header > nav {
|
|
|
|
margin-bottom: -1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 + a {
|
|
|
|
margin: -.75em -.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer > nav,
|
|
|
|
header > nav,
|
|
|
|
/* List items with direct hyperlink children should only have one hyperlink. */
|
2022-05-27 00:06:56 +00:00
|
|
|
li > a,
|
2022-06-03 22:47:14 +00:00
|
|
|
h2 + a,
|
|
|
|
nav ol a {
|
|
|
|
margin-left: -.25em;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2022-05-27 00:06:56 +00:00
|
|
|
nav li,
|
2022-06-03 22:47:14 +00:00
|
|
|
ol li > a {
|
|
|
|
margin: .25em;
|
2022-05-12 04:31:27 +00:00
|
|
|
}
|
|
|
|
|
2022-06-03 22:47:14 +00:00
|
|
|
div[itemprop="comment"] dd > a {
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: -.25em;
|
|
|
|
padding: .75em .25em;
|
2022-06-03 05:04:21 +00:00
|
|
|
}
|
|
|
|
|
2022-06-03 22:47:14 +00:00
|
|
|
/* Increase backlink tap target size */
|
2022-06-03 05:04:21 +00:00
|
|
|
a[role="doc-backlink"] {
|
2022-06-03 22:47:14 +00:00
|
|
|
padding: 0 1.75em 1.5em .25em;
|
2022-06-03 05:04:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Make room for those big backlink buttons so they don't overlap
|
|
|
|
* with links on the following endnote */
|
|
|
|
section[role="doc-endnotes"] li {
|
2022-06-03 22:47:14 +00:00
|
|
|
margin-bottom: 1.75em;
|
2022-05-02 22:42:57 +00:00
|
|
|
}
|
2022-03-26 19:32:22 +00:00
|
|
|
}
|
|
|
|
|
2022-05-02 04:59:11 +00:00
|
|
|
/* narrow screens: reduce list indentation, hyphenate nested lists
|
2022-05-04 05:09:14 +00:00
|
|
|
* touch screens: lists of links should be easy to tap so give them
|
2022-05-05 05:22:38 +00:00
|
|
|
* some spacing (partial SC 2.5.5). There should be non-interactive
|
|
|
|
* space to the left that's safe to tap. */
|
2022-04-24 03:27:35 +00:00
|
|
|
dd,
|
|
|
|
ol,
|
|
|
|
ul {
|
2022-04-24 03:29:17 +00:00
|
|
|
margin: 0;
|
2022-06-03 22:47:14 +00:00
|
|
|
padding-left: 1.5em;
|
2022-04-24 03:29:17 +00:00
|
|
|
}
|
|
|
|
|
2022-04-26 05:11:18 +00:00
|
|
|
ol ol,
|
|
|
|
ul ul {
|
2022-05-05 05:22:38 +00:00
|
|
|
-webkit-hyphens: auto;
|
2022-04-26 05:11:18 +00:00
|
|
|
hyphens: auto;
|
2022-04-27 15:41:36 +00:00
|
|
|
padding-left: 1em;
|
2022-04-26 05:11:18 +00:00
|
|
|
}
|
|
|
|
|
2022-05-05 04:49:45 +00:00
|
|
|
/* Save some space and paper by making the site nav and footer links
|
|
|
|
* single-line without bullets. The title should be visible in the fold
|
|
|
|
* on most screens so users can identify the current page. */
|
|
|
|
|
|
|
|
/* Step 1 to making the single-line nav: remove the bullet padding. */
|
2022-05-04 05:09:14 +00:00
|
|
|
nav ul {
|
2022-05-23 15:54:06 +00:00
|
|
|
padding: 0;
|
2022-05-04 05:09:14 +00:00
|
|
|
}
|
|
|
|
|
2022-05-05 04:49:45 +00:00
|
|
|
/* step 2: remove bullets and make elements inline.
|
|
|
|
* Also: bump up the line-height and margins to increase space
|
|
|
|
* between tap-targets (SC 2.5.5). Google a11y guidelines require 8 CSS
|
|
|
|
* pixels between tap targets. */
|
2022-05-04 05:09:14 +00:00
|
|
|
nav ul li {
|
|
|
|
display: inline-block;
|
2022-06-03 22:47:14 +00:00
|
|
|
margin-right: .5em;
|
2022-05-04 05:09:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* narrow screens: reduce margin for blockquotes a lot, using
|
|
|
|
* a border instead. Put it on the left and right to make it
|
|
|
|
* LTR/RTL-neutral, for machine translators that change text
|
|
|
|
* direction (e.g. the one in Edge). */
|
|
|
|
blockquote {
|
|
|
|
border-left: 3px solid;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0 1em;
|
|
|
|
}
|
|
|
|
|
2022-04-14 01:42:52 +00:00
|
|
|
/* Narrow screens: allow hyphenating titles
|
|
|
|
* I can't add soft hyphens to these. */
|
|
|
|
h1 {
|
2022-05-05 05:22:38 +00:00
|
|
|
-webkit-hyphens: auto;
|
2022-04-14 01:42:52 +00:00
|
|
|
hyphens: auto;
|
|
|
|
}
|
|
|
|
|
2022-05-27 00:06:56 +00:00
|
|
|
/* Very narrow screens: full hyphenation.
|
|
|
|
* This is the typical width of a smart feature phone. */
|
|
|
|
@media (max-width: 15em) {
|
2022-05-05 04:49:45 +00:00
|
|
|
body {
|
|
|
|
font-size: 100%;
|
2022-05-05 05:22:38 +00:00
|
|
|
-webkit-hyphens: auto;
|
2022-05-04 00:05:47 +00:00
|
|
|
hyphens: auto;
|
2022-05-10 23:06:28 +00:00
|
|
|
padding: 0 8px;
|
2022-04-14 01:42:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-19 02:54:40 +00:00
|
|
|
/* <kbd> should be distinguished from <code> and surrounding text
|
2022-05-04 00:05:47 +00:00
|
|
|
* in a way beyond font-face; at least two visual distinctions needed
|
|
|
|
* Also, 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. */
|
2022-05-10 23:06:28 +00:00
|
|
|
kbd {
|
2022-04-03 06:54:39 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2022-05-28 21:22:52 +00:00
|
|
|
/* <ins> should not be mistaken for hyperlinks. */
|
|
|
|
ins {
|
|
|
|
font-style: italic;
|
2022-06-03 22:47:14 +00:00
|
|
|
text-decoration: none;
|
2022-05-28 21:22:52 +00:00
|
|
|
}
|
|
|
|
|
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
|
2022-05-12 04:31:27 +00:00
|
|
|
* be some extra space.
|
2022-05-13 00:33:12 +00:00
|
|
|
* This does not hold true for figures in somewhat distinct sections; the
|
|
|
|
* section should instead get the spacing. A section that constitutes a
|
|
|
|
* separate schema.org object would qualify. */
|
|
|
|
section[itemprop="mentions"],
|
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-05-13 00:33:12 +00:00
|
|
|
section[itemprop="mentions"] > figure {
|
2022-05-12 04:31:27 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
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,
|
2022-05-12 04:31:27 +00:00
|
|
|
pre, /* Needed for ancient browsers */
|
2022-04-07 06:42:10 +00:00
|
|
|
samp {
|
2021-06-27 02:35:49 +00:00
|
|
|
font-family: monospace, monospace;
|
|
|
|
}
|
|
|
|
|
2022-05-30 19:07:33 +00:00
|
|
|
/* Some browsers don't support the hidden attr.
|
|
|
|
* I use hidden spans in backlinks to provide ARIA labels.
|
|
|
|
* Some ancient browsers don't support input[type="hidden"] */
|
|
|
|
span[hidden],
|
|
|
|
input[type="hidden"] {
|
2022-05-20 00:18:14 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
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-05-20 02:26:21 +00:00
|
|
|
div[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;
|
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-05-04 00:05:47 +00:00
|
|
|
overflow: auto;
|
2022-05-04 05:09:14 +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-05-04 05:09:14 +00:00
|
|
|
* <pre> and <code> to distinguish them in ways besides font-family.
|
|
|
|
* This is Technique C25 of SC 1.4.8 */
|
2022-05-27 00:06:56 +00:00
|
|
|
input,
|
2022-02-28 23:05:14 +00:00
|
|
|
img,
|
2022-05-05 05:22:38 +00:00
|
|
|
pre {
|
2022-04-14 01:19:49 +00:00
|
|
|
border: 1px solid;
|
|
|
|
}
|
|
|
|
|
2022-05-04 05:09:14 +00:00
|
|
|
/* A black border is too harsh; the extra visual noise is distracting
|
|
|
|
* to users with eye-tracking or ADHD. Only special items like headings
|
|
|
|
* should draw gaze. */
|
2022-04-26 05:11:18 +00:00
|
|
|
:not(pre) > code,
|
|
|
|
:not(pre) > samp {
|
2022-05-05 05:22:38 +00:00
|
|
|
border: 1px solid #999;
|
2022-05-04 00:05:47 +00:00
|
|
|
|
|
|
|
/* borders shouldn't touch text */
|
2022-06-03 22:47:14 +00:00
|
|
|
padding: 0 .25em;
|
2022-04-27 15:41:36 +00:00
|
|
|
}
|
|
|
|
|
2022-05-04 05:09:14 +00:00
|
|
|
/* center standalone images; same justification as
|
2022-03-29 01:11:21 +00:00
|
|
|
* for centering the body contents. Also makes images easier to see
|
2022-05-05 04:49:45 +00:00
|
|
|
* for people holding a device with one hand. */
|
2022-05-12 04:31:27 +00:00
|
|
|
picture > img {
|
2022-02-28 23:05:14 +00:00
|
|
|
display: block;
|
|
|
|
height: auto;
|
|
|
|
margin: auto;
|
2022-05-05 04:49:45 +00:00
|
|
|
max-width: 100%;
|
2022-02-28 23:05:14 +00:00
|
|
|
}
|
2022-03-26 19:32:22 +00:00
|
|
|
|
2022-05-04 05:09:14 +00:00
|
|
|
/* Some images look blurry when scaled; this makes them easier to
|
|
|
|
* read. */
|
|
|
|
.pix {
|
|
|
|
image-rendering: pixelated;
|
|
|
|
}
|
|
|
|
|
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. */
|
2022-05-26 19:17:58 +00:00
|
|
|
aside nav,
|
2022-04-03 06:54:39 +00:00
|
|
|
footer,
|
2022-05-20 00:18:14 +00:00
|
|
|
section[role="doc-endnotes"],
|
2022-05-13 03:51:11 +00:00
|
|
|
section[aria-labelledby="webmentions"] {
|
2022-05-04 05:09:14 +00:00
|
|
|
border-top: 1px solid;
|
2022-04-03 06:54:39 +00:00
|
|
|
content-visibility: auto;
|
|
|
|
}
|
|
|
|
|
2022-05-30 19:07:33 +00:00
|
|
|
/* Make search box and submit button as wide as possible while keeping
|
|
|
|
* them next to each other. */
|
|
|
|
|
|
|
|
/* Use table-style layout (no, not actual tables. eww.). It's like a
|
|
|
|
* single-row flexbox that supports more browsers. Kanged this CSS from
|
|
|
|
* ww.gov.uk. Give the entire width of the row to the search box, but
|
|
|
|
* allow the minimum width for the submit button. */
|
|
|
|
form > div {
|
|
|
|
display: table;
|
|
|
|
width: 100%
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
/* Browsers like Safari make the submit button pill-shaped which
|
|
|
|
* clashes with the input box. The only purely-cosmetic change on this
|
|
|
|
* site. */
|
|
|
|
appearance: none;
|
|
|
|
|
|
|
|
/* Don't shrink the size of the text in forms or make it system-ui. */
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* A text box should take all available width */
|
|
|
|
input:not([type="submit"]) {
|
|
|
|
display: table-cell;
|
|
|
|
width: 98%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pseudo-table-cell containing the submit button */
|
|
|
|
form > div > div {
|
|
|
|
display: table-cell;
|
|
|
|
vertical-align: top; /* IE and some botique browsers need this */
|
|
|
|
width: 1%;
|
|
|
|
}
|
|
|
|
|
2022-05-12 04:31:27 +00:00
|
|
|
|
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
|
2022-05-14 00:16:15 +00:00
|
|
|
* To my knowledge: <a>, <summary>, and <pre tabindex=0> are the only
|
|
|
|
* focusable elements.
|
2022-04-14 01:19:49 +00:00
|
|
|
* */
|
|
|
|
|
|
|
|
a:focus,
|
2022-04-27 15:41:36 +00:00
|
|
|
summary:focus,
|
2022-05-27 00:06:56 +00:00
|
|
|
pre[tabindex]:focus,
|
|
|
|
form :focus {
|
2022-04-14 01:19:49 +00:00
|
|
|
outline: 3px solid;
|
|
|
|
}
|
|
|
|
|
2022-05-27 00:06:56 +00:00
|
|
|
/* Remove :focus styling for browsers that do support :focus-visible.
|
|
|
|
* Leave it on for form stuff. */
|
2022-04-14 01:19:49 +00:00
|
|
|
@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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
* */
|