css: standardize font sizes.

Fix various elements to use standard font sizes instead of ad-hoc sizes.

Noticeable changes:

* Tags in autocomplete are slightly smaller.
* The favorite heart icon on posts is slightly smaller.
* Pool titles on thumbnails in the pool gallery page are slightly bigger.
* The page footer is slightly smaller.
* Timestamps on comments and forum posts are very slightly smaller.
* "Pending"/"approved"/"rejected" labels on forum posts are very slightly smaller.
This commit is contained in:
evazion
2021-10-25 05:59:40 -05:00
parent 7034872132
commit 094ed4c11d
14 changed files with 17 additions and 20 deletions

View File

@@ -1,13 +1,13 @@
:root {
--text-xs: 0.5625rem; // 9px
--text-sm: 0.7875rem; // 12.6px
--text-sm: 0.75rem; // 12px
--text-md: 0.875rem; // 14px
--text-lg: 1.0208rem; // 16.3333px
--text-lg: 1rem; // 16px
--text-xl: 1.3125rem; // 21px
--text-xxl: 1.75rem; // 28px
--header-font: Tahoma, Verdana, Helvetica, sans-serif;
--body-font: Verdana, Helvetica, sans-serif;
--monospace-font: 0.85rem monospace; // 13.6px
--monospace-font: 0.875rem monospace; // 14px
}
$h1_padding: 0.8em 0 0.25em 0;