35 lines
481 B
CSS
35 lines
481 B
CSS
/*** 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;
|
|
}
|