Increase body line height. Add padded background color to code.

This commit is contained in:
inference 2023-03-22 01:19:23 +00:00
parent fa6d030f4f
commit ad8846ad93
Signed by: inference
SSH Key Fingerprint: SHA256:9Pl0nZ2UJacgm+IeEtLSZ4FOESgP1eKCtRflfPfdX9M

10
inf.css
View File

@ -3,7 +3,7 @@
/* Copyright 2022-2023 Jake Winters */ /* Copyright 2022-2023 Jake Winters */
/* SPDX-License-Identifier: BSD-3-Clause-Clear */ /* SPDX-License-Identifier: BSD-3-Clause-Clear */
/* Version: 7.0.0.17 */ /* Version: 7.1.0.18 */
h1, .h1 { h1, .h1 {
@ -49,6 +49,7 @@ body {
margin-right: min(150px, 12vw); margin-right: min(150px, 12vw);
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
font-size: 20px; font-size: 20px;
line-height: 120%;
background-color: #262626; background-color: #262626;
} }
@ -66,8 +67,13 @@ p {
} }
code { code {
font-size: 18px; font-size: 16px;
color: #ffffff; color: #ffffff;
background-color: #000000;
padding-top: 4px;
padding-right: 4px;
padding-bottom: 4px;
padding-left: 4px;
} }
a { a {