Update comments.

This commit is contained in:
Nick Heppler 2025-02-20 08:05:15 -05:00
parent 9e6dc010e2
commit 0a1d3a92a6

View File

@ -1,59 +1,59 @@
/* Base styles */ /* Base styles */
body { body {
background-color: #f2f2f2; /* Tertiary color */ background-color: #ffffff; /* Recreation & Environment Tertiary Color */
color: #233f28; /* Primary color */ color: #233f28; /* Primary color */
font-family: 'Arial', sans-serif; font-family: 'Arial', sans-serif;
font-size: 16px; font-size: 16px;
line-height: 1.6; line-height: 1.6;
} }
/* Header Styles */ /* Header Styles */
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
color: #233f28; /* Primary color for all headers */ color: #233f28; /* Recreation & Environment Primary Color */
} }
/* Links */ /* Links */
a { a {
color: #7e9084; /* Secondary color for links */ color: #004dd1; /* Web-Specific New York State Color Palette for links */
} }
a:hover { a:hover {
color: #face00; /* Accent color for links on hover */ color: #face00; /* Recreation & Environment Accent Color */
} }
/* Code Chunks */ /* Code Chunks */
code, pre { code, pre {
background-color: #233f28; /* Primary color for code background */ background-color: #f2f2f2; /* Gray95 for code background */
color: #d9e1dd; /* Tertiary color for code text */ color: #233f28; /* Recreation & Environment Primary Color for code text */
padding: 4px; padding: 4px;
border-radius: 4px; border-radius: 4px;
} }
/* Tables */ /* Tables */
table { table {
border-collapse: collapse; border-collapse: collapse;
width: 100%; width: 100%;
} }
table, th, td { table, th, td {
border: 1px solid #7e9084; /* Secondary color for table borders */ border: 1px solid #7e9084; /* Secondary color for table borders */
} }
th { th {
background-color: #233f28; /* Primary color for table headers */ background-color: #233f28; /* Primary color for table headers */
color: #d9e1dd; /* Tertiary color for table header text */ color: #d9e1dd; /* Tertiary color for table header text */
} }
/* Table of Contents */ /* Table of Contents */
#toc { #toc {
background-color: #7e9084; /* Secondary color for TOC background */ background-color: #7e9084; /* Secondary color for TOC background */
padding: 10px; padding: 10px;
} }
#toc a { #toc a {
color: #d9e1dd; /* Tertiary color for TOC links */ color: #d9e1dd; /* Tertiary color for TOC links */
} }
#toc a:hover { #toc a:hover {
color: #face00; /* Accent color for TOC link hover */ color: #face00; /* Accent color for TOC link hover */
} }