Add section comments to clarify section purposes.

This commit is contained in:
inference 2023-03-22 14:20:50 +00:00
parent 59f43e9510
commit 3ec1f71de3
Signed by: inference
SSH Key Fingerprint: SHA256:9Pl0nZ2UJacgm+IeEtLSZ4FOESgP1eKCtRflfPfdX9M

31
inf.css
View File

@ -3,9 +3,10 @@
/* 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: 8.0.0.20 */ /* Version: 8.0.1.21 */
/* Heading 1 */
h1, .h1 { h1, .h1 {
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
font-size: 26px; font-size: 26px;
@ -13,36 +14,48 @@ h1, .h1 {
color: #ffffff; color: #ffffff;
} }
/* Heading 2 */
h2, .h2 { h2, .h2 {
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
font-size: 22px; font-size: 22px;
color: #ffffff; color: #ffffff;
} }
/* Heading 3 */
h3, .h3 { h3, .h3 {
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
font-size: 20px; font-size: 20px;
color: #ffffff; color: #ffffff;
} }
/* Heading 4 */
h4, .h4 { h4, .h4 {
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
font-size: 18px; font-size: 18px;
color: #ffffff; color: #ffffff;
} }
/* Heading 5 */
h5, .h5 { h5, .h5 {
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
font-size: 16px; font-size: 16px;
color: #ffffff; color: #ffffff;
} }
/* Heading 6 */
h6, .h6 { h6, .h6 {
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
font-size: 16px; font-size: 16px;
color: #ffffff; color: #ffffff;
} }
/* Body */
body { body {
padding-top: 40px; padding-top: 40px;
margin-left: min(400px, 45vw); margin-left: min(400px, 45vw);
@ -71,12 +84,16 @@ body {
text-decoration: underline; text-decoration: underline;
} }
/* Paragraph */
p { p {
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
font-size: 18px; font-size: 18px;
color: #ffffff; color: #ffffff;
} }
/* Code */
code { code {
font-size: 16px; font-size: 16px;
color: #ffffff; color: #ffffff;
@ -87,12 +104,16 @@ code {
padding-left: 4px; padding-left: 4px;
} }
/* Link */
a { a {
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
color: #000000; color: #000000;
text-decoration: none; text-decoration: none;
} }
/* Lists */
ul { ul {
list-style: none; list-style: none;
} }
@ -112,6 +133,8 @@ ul li::before {
color: #ffffff; color: #ffffff;
} }
/* Tables */
table, th, td { table, th, td {
border: 2px solid; border: 2px solid;
border-collapse: collapse; border-collapse: collapse;
@ -137,6 +160,8 @@ table, th, td {
text-align: center; text-align: center;
} }
/* Sidebar */
.sidebar { .sidebar {
height: 100%; height: 100%;
width: 250px; width: 250px;
@ -165,10 +190,14 @@ table, th, td {
transform: translate(0px, 13px); transform: translate(0px, 13px);
} }
/* Emphasis */
strong { strong {
color: #ffffff; color: #ffffff;
} }
/* Media */
@media (max-width: 600px) { @media (max-width: 600px) {
.sidebar { .sidebar {