This commit is contained in:
McShelby 2024-04-04 22:22:44 +00:00
parent c8262094ff
commit e910e3af92
271 changed files with 6842 additions and 6838 deletions

View file

@ -139,7 +139,7 @@ h1 + .footline{
.term-list {
display: none;
}
mark {
mark.search {
background: inherit;
color: inherit;
}

View file

@ -445,8 +445,8 @@
}
div.box.accent {
background-color: rgba( 255, 136, 255, 1 ); /* var(--INTERNAL-ACCENT-color) */
border-color: rgba( 255, 136, 255, 1 ); /* var(--INTERNAL-ACCENT-color) */
background-color: rgb( 255, 102, 78, 1 ); /* var(--INTERNAL-ACCENT-color) */
border-color: rgb( 255, 102, 78, 1 ); /* var(--INTERNAL-ACCENT-color) */
}
div.box.accent > .box-content {
@ -679,11 +679,11 @@
}
.btn.cstyle.accent {
background-color: rgba( 255, 136, 255, 1 ); /* var(--ACCENT-color) */
background-color: rgb( 255, 102, 78, 1 ); /* var(--ACCENT-color) */
}
.btn.cstyle.accent > * {
border-color: rgba( 255, 136, 255, 1 ); /* var(--ACCENT-color) */
border-color: rgb( 255, 102, 78, 1 ); /* var(--ACCENT-color) */
}
.btn.cstyle.blue {
@ -789,7 +789,7 @@
}
.badge.accent > .badge-content {
background-color: rgba( 255, 136, 255, 1 ); /* var(--INTERNAL-ACCENT-color) */
background-color: rgb( 255, 102, 78, 1 ); /* var(--INTERNAL-ACCENT-color) */
}
.badge.blue > .badge-content {

View file

@ -1,7 +1,7 @@
:root {
--PRIMARY-color: rgba( 131, 201, 50, 1 ); /* brand primary color */
--SECONDARY-color: rgba( 99, 128, 208, 1 ); /* brand secondary color */
--ACCENT-color: rgba( 255, 136, 255, 1 ); /* brand accent color, used for search highlights */
--ACCENT-color: rgb( 255, 102, 78, 1 ); /* brand accent color, used for search highlights */
--MAIN-TEXT-color: rgba( 0, 0, 0, 1 ); /* text color of content and h1 titles */
--MAIN-LINK-HOVER-color: rgba( 32, 40, 145, 1 ); /* hovered link color of content */

View file

@ -1,7 +1,7 @@
:root {
--PRIMARY-color: rgba( 125, 201, 3, 1 ); /* brand primary color */
--SECONDARY-color: rgba( 108, 140, 227, 1 ); /* brand secondary color */
--ACCENT-color: rgba( 255, 68, 255, 1 ); /* brand accent color, used for search highlights */
--ACCENT-color: rgb( 255, 102, 78, 1 ); /* brand accent color, used for search highlights */
--MAIN-TEXT-color: rgba( 224, 224, 224, 1 ); /* text color of content and h1 titles */
--MAIN-LINK-HOVER-color: rgba( 147, 176, 255, 1 ); /* hovered link color of content */

View file

@ -1,7 +1,7 @@
:root {
--PRIMARY-color: rgba( 125, 201, 3, 1 ); /* brand primary color */
--SECONDARY-color: rgba( 72, 106, 201, 1 ); /* brand secondary color */
--ACCENT-color: rgba( 255, 136, 255, 1 ); /* brand accent color, used for search highlights */
--ACCENT-color: rgb(255, 102, 78); /* brand accent color, used for search highlights */
--MAIN-TEXT-color: rgba( 0, 0, 0, 1 ); /* text color of content and h1 titles */
--MAIN-LINK-HOVER-color: rgba( 32, 40, 145, 1 ); /* hovered link color of content */

View file

@ -525,12 +525,14 @@ body:not(.print) #R-body-inner.narrow p {
mark {
background: transparent;
border-radius: 0.8em 0.3em;
border-radius: 0.8em 0.3rem;
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
color: rgba( 0, 0, 0, 1 );
margin: 0 -0.4em;
padding: 0.1em 0.4em;
-webkit-print-color-adjust: exact;
color-adjust: exact;
margin: 0 -0.4rem;
padding: 0.1em 0.4rem;
}
kbd {
@ -539,14 +541,16 @@ kbd {
border-radius: 0.25rem;
border-style: solid;
border-width: 1px;
box-shadow: 0 1px 0 1px rgba( 134, 134, 134, .5 );
font-size: 0.75em;
box-shadow: 0 .0625rem 0 .0625rem rgba( 134, 134, 134, .5 );
-webkit-print-color-adjust: exact;
color-adjust: exact;
font-size: 0.75rem;
line-height: 1;
min-width: 0.75rem;
padding: 2px 5px 2px 5px;
padding: .125rem .3125rem .125rem .3125rem;
position: relative;
text-align: center;
top: -2px;
top: -.125rem;
}
h1 {