Add explicit font sizes and boldness.

This commit is contained in:
Hyperling 2025-05-17 10:39:31 -07:00
parent 805b4ef8e0
commit fc129124b8
2 changed files with 37 additions and 0 deletions

34
pages/helpers/font.css Normal file
View File

@ -0,0 +1,34 @@
/*** Fonts and text sizes. ***/
/* For debugging anything which does not have a font size yet. * /
* {
color: cyan;
font-size: xx-large;
}
/* */
p,li,code,a,pre {
font-size: medium;
}
b,figcaption {
font-size: large;
font-weight: bold;
}
strong,img {
font-size: larger;
font-weight: bolder;
}
h6,h5 {
font-size: larger;
}
h4,h3 {
font-size: x-large;
}
h2,h1 {
font-size: xx-large;
}

View File

@ -13,6 +13,9 @@
<style>
<?php include "main.css"; ?>
</style>
<style>
<?php include "font.css"; ?>
</style>
<style>
<?php include "dark.css"; ?>
</style>