This commit is contained in:
Ty Clifford
2026-07-03 07:31:09 -04:00
commit cebb0d3af1
800 changed files with 89782 additions and 0 deletions
+159
View File
@@ -0,0 +1,159 @@
/* COMMON */
a {
color: #495057;
text-decoration: none;
}
a:hover {
color: #0a58ca;
}
img {
max-width: 100%;
}
pre, code {
color: #f8f8f8;
background-color: #495057;
}
code {
display: inline;
padding: 0.2em 0.4em;
line-height: 1.4;
border-radius: 3px;
box-decoration-break: clone;
-webkit-box-decoration-break: clone;
}
pre {
overflow-x: auto;
padding: 1.6rem 2.2rem;
line-height: 1.5;
border-radius: 5px !important;
}
/* BOOTSTRAP */
.list-group-item {
background-color: inherit;
}
.badge {
font-size: 0.875rem;
font-weight: 400;
}
.bi {
margin-right: .5rem!important;
}
.btn:focus,
.form-control:focus,
.form-select:focus {
outline: none !important;
box-shadow: none !important;
}
/* PAGE */
section.page {
font-size: 1.1rem;
}
section.page .page-description {
font-style: italic;
}
section.page a {
color: #0a58ca;
}
section.page p {
margin-bottom: 1.2rem;
}
section.page h1.page-title {
font-size: 2rem;
}
section.page h2 {
font-size: 1.5rem;
}
section.page h3 {
font-size: 1.3rem;
}
section.page h4 {
font-size: 1.1rem;
}
section.page h5 {
font-size: 1rem;
}
section.page h2,
section.page h3,
section.page h4,
section.page h5 {
margin: 2rem 0 1rem 0;
}
/* NAV LINKS */
.nav-links {
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 0.5rem 1.25rem;
margin: 0;
padding: 0;
}
.nav-links a {
color: #495057;
}
.nav-links a:hover {
color: #0a58ca;
}
/* HOME */
.site-title {
font-size: clamp(1.8rem, 2.5vw, 2.6rem);
}
.list-group-item h5 {
font-size: 1.15rem;
}
/* FOOTER */
.footer-links {
list-style: none;
margin: 0;
padding: 0;
}
@media (max-width: 575.98px) {
section.page {
font-size: 1rem;
}
section.page h1.page-title {
font-size: 1.75rem;
}
}
/* VIDEO EMBED RESPONSIVE */
.video-embed {
overflow:hidden;
padding-bottom: 56.25%; /* 16:9 */
position:relative;
height:0;
}
.video-embed iframe{
left:0;
top:0;
height:100%;
width:100%;
position:absolute;
}
+20
View File
@@ -0,0 +1,20 @@
/* HELPERs */
.color-blue {
color: #0a58ca;
}
.color-light {
color: #495057;
}
.bold {
font-weight: 600;
}
.italic {
font-style: italic;
}
.bg-gray {
background-color: #ececec;
}
+50
View File
@@ -0,0 +1,50 @@
body {
background-color: #1C1C1E !important;
color: #b3b3b3 !important;
}
a {
color: #b3b3b3 !important;
}
a:hover {
color: #e2e2e2 !important
}
a.badge:hover {
color: #999 !important;
}
.form-text {
color: #989899 !important;
}
.bg-light {
background-color: #000 !important;
}
.color-blue {
color: #688bbd !important;
}
.btn-outline-primary {
color: #688bbd !important;
border-color: #688bbd !important;
}
.btn-outline-primary:hover {
background-color: #1C1C1E !important;
color: #fff !important;
}
.page-link {
color: #688bbd !important;
border-color: #688bbd !important;
background-color: #1C1C1E !important;
}
.form-control {
background-color: #1C1C1E !important;
border-color: #302F33 !important;
color: #b3b3b3 !important;
}