2020-12-16 07:18:18 +00:00
|
|
|
/* CSS that adds the bare minimum for a simple layout */
|
|
|
|
|
2021-06-27 02:35:49 +00:00
|
|
|
/* This site's CSS does 10 major things:
|
2020-12-16 07:18:18 +00:00
|
|
|
* 1. sans-serif instead of serif for low-res screens.
|
2021-06-27 02:35:49 +00:00
|
|
|
* 2. Consistent font size; <pre> and <code> shouldn't be smaller than
|
|
|
|
* regular text.
|
2020-12-16 07:18:18 +00:00
|
|
|
* 3. max text width for readability
|
|
|
|
* 4. single-row nav links widescreen, multiline nav on narrow screens
|
2021-06-14 04:05:58 +00:00
|
|
|
* 5. Soft border around code in case it looks too similar to regular
|
2020-12-16 07:18:18 +00:00
|
|
|
* text, and to show it continue across more than one line
|
2021-08-30 22:08:59 +00:00
|
|
|
* 6. Increase the line-spacing a bit so users on mobile devices can
|
|
|
|
* tap links more easily.
|
2021-06-27 02:35:49 +00:00
|
|
|
* 7. Horizontally center non-inline images; left-aligned stick out.
|
2021-06-14 04:05:58 +00:00
|
|
|
* 8. dark.css changes a few colors if the browser wants dark mode.
|
2021-06-27 02:35:49 +00:00
|
|
|
* 9. Support unstyled lists: for webmentions, post lists, nav links.
|
|
|
|
* 10. Make blockquotes look okay on narrow screens.
|
2020-12-16 07:18:18 +00:00
|
|
|
* Everything else is browser defaults:
|
|
|
|
* default fonts, non-dark-mode colors, etc.
|
|
|
|
*/
|
2020-12-27 05:04:25 +00:00
|
|
|
|
2021-08-30 22:08:59 +00:00
|
|
|
html {
|
|
|
|
font: 100%/1.5 sans-serif;
|
2020-12-16 07:18:18 +00:00
|
|
|
margin: auto;
|
2021-06-27 02:35:49 +00:00
|
|
|
max-width: 50em;
|
2021-08-30 22:08:59 +00:00
|
|
|
padding: 0 3%;
|
2021-06-27 02:35:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
|
|
|
border-left: 6px solid #bbb;
|
|
|
|
margin-left: 0;
|
|
|
|
padding-left: 1em;
|
2021-01-28 19:00:47 +00:00
|
|
|
}
|
|
|
|
|
2020-12-16 07:18:18 +00:00
|
|
|
/* nav links should be easy to tap with fat fingers */
|
2020-12-19 02:30:34 +00:00
|
|
|
nav li {
|
2021-06-27 02:35:49 +00:00
|
|
|
padding-right: 0.5em;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
2021-01-29 20:01:58 +00:00
|
|
|
/* Lists without bullets; navlinks, posts lists, webmentions */
|
2021-01-18 03:42:07 +00:00
|
|
|
.unstyled-list {
|
2020-12-20 02:01:50 +00:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-01-18 03:42:07 +00:00
|
|
|
.unstyled-list li {
|
2020-12-20 02:01:50 +00:00
|
|
|
list-style-type: none;
|
2021-06-27 02:35:49 +00:00
|
|
|
margin-bottom: 0.5em;
|
2020-12-20 02:01:50 +00:00
|
|
|
}
|
|
|
|
|
2021-08-30 22:08:59 +00:00
|
|
|
/* single-line nav on widescreen, multi-line nav on narrow screens */
|
|
|
|
@media (min-width: 24em) {
|
2020-12-19 02:30:34 +00:00
|
|
|
nav li {
|
2020-12-16 07:18:18 +00:00
|
|
|
display: inline;
|
|
|
|
}
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
2020-11-30 21:17:15 +00:00
|
|
|
|
2021-06-23 05:40:11 +00:00
|
|
|
/* center images that aren't my indieweb icon */
|
2020-12-29 21:12:57 +00:00
|
|
|
img:not(.u-photo) {
|
2020-12-16 07:18:18 +00:00
|
|
|
display: block;
|
2020-12-16 07:09:45 +00:00
|
|
|
height: auto;
|
2020-12-16 07:18:18 +00:00
|
|
|
margin: auto;
|
2020-12-12 10:42:45 +00:00
|
|
|
max-width: 100%;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|
|
|
|
|
2021-06-27 02:35:49 +00:00
|
|
|
code,
|
|
|
|
pre {
|
|
|
|
/* browsers make <pre> small for some dumb legacy reason
|
|
|
|
* and this somehow fixes that. */
|
|
|
|
|
|
|
|
/* stylelint-disable -- compatibility hack */
|
|
|
|
font-family: monospace, monospace;
|
|
|
|
|
|
|
|
/* csslint ignore:end */
|
|
|
|
}
|
|
|
|
|
2020-12-12 10:42:45 +00:00
|
|
|
pre,
|
2021-03-25 22:38:07 +00:00
|
|
|
p code {
|
2020-12-16 07:18:18 +00:00
|
|
|
border: 1px solid #bbb;
|
2021-06-27 02:35:49 +00:00
|
|
|
padding: 0 0.1em;
|
2020-11-25 01:09:26 +00:00
|
|
|
}
|
2020-11-30 21:17:15 +00:00
|
|
|
|
2020-12-16 07:18:18 +00:00
|
|
|
/* Allow horizontal scroll in a pre block, but don't clip it vertically */
|
2020-12-12 10:42:45 +00:00
|
|
|
pre {
|
2020-12-16 07:18:18 +00:00
|
|
|
/* csslint ignore:start */
|
|
|
|
overflow: auto visible;
|
2020-11-03 23:46:20 +00:00
|
|
|
|
2020-12-16 07:18:18 +00:00
|
|
|
/* csslint ignore:end */
|
2020-12-24 01:04:40 +00:00
|
|
|
padding: 0.5rem;
|
2020-11-03 23:46:20 +00:00
|
|
|
}
|