runtimeterror/static/css/custom.css

528 lines
9.7 KiB
CSS
Raw Normal View History

2024-08-15 20:56:47 +00:00
/* define fonts */
:root {
2024-04-25 01:09:17 +00:00
--font-monospace: 'Berkeley Mono', 'IBM Plex Mono', 'Cascadia Mono', 'Roboto Mono', 'Source Code Pro', 'Fira Mono', 'Courier New', monospace;
2024-04-20 21:30:54 +00:00
}
2024-08-15 20:56:47 +00:00
/* dark/light theming */
:root{
/* Default dark theme */
--bg: var(--dark-base00);
--code: var(--dark-base06);
--fg: var(--dark-base05);
--highlight: var(--dark-base0A);
--hover: var(--dark-base0C);
--inner-bg: var(--dark-base02);
--link: var(--dark-base0D);
--logo-text: var(--dark-base09);
--logo: var(--dark-base0B);
--muted: var(--dark-base03);
--off-bg: var(--dark-base01);
--off-fg: var(--dark-base04);
--root-prompt: var(--dark-base08);
--user-prompt: var(--dark-base07);
}
:root[data-theme="light"] {
--bg: var(--light-base00);
--off-bg: var(--light-base01);
--inner-bg: var(--light-base02);
--muted: var(--light-base03);
--off-fg: var(--light-base04);
--fg: var(--light-base05);
--code: var(--light-base06);
--user-prompt: var(--light-base07);
--root-prompt: var(--light-base08);
--logo-text: var(--light-base09);
--highlight: var(--light-base0A);
--logo: var(--light-base0B);
--hover: var(--light-base0C);
--link: var(--light-base0D);
}
@media (prefers-color-scheme: light) {
:root:not([data-theme="dark"]) {
--bg: var(--light-base00);
--off-bg: var(--light-base01);
--inner-bg: var(--light-base02);
--muted: var(--light-base03);
--off-fg: var(--light-base04);
--fg: var(--light-base05);
--code: var(--light-base06);
--user-prompt: var(--light-base07);
--root-prompt: var(--light-base08);
--logo-text: var(--light-base09);
--highlight: var(--light-base0A);
--logo: var(--light-base0B);
--hover: var(--light-base0C);
--link: var(--light-base0D);
}
}
body {
transition: background-color 0.3s ease, color 0.3s ease;
}
.theme-toggle {
position: absolute;
top: 1rem;
right: 1rem;
background: none;
border: none;
cursor: pointer;
padding: 0;
width: 1.5rem;
height: 1.5rem;
2024-08-15 20:56:47 +00:00
z-index: 1000;
transition: opacity 0.3s ease;
}
.theme-toggle__icon {
width: 100%;
height: 100%;
transition: opacity 0.3s ease;
}
.theme-toggle__icon svg {
width: 100%;
height: 100%;
fill: var(--off-fg);
transition: fill 0.3s ease;
}
.theme-toggle:hover .theme-toggle__icon svg {
fill: var(--hover);
}
.theme-toggle__icon--sun,
[data-theme="dark"] .theme-toggle__icon--moon {
display: none;
}
[data-theme="dark"] .theme-toggle__icon--sun,
.theme-toggle__icon--moon {
display: block;
}
2024-08-15 20:56:47 +00:00
.theme-toggle:hover {
opacity: 0.7;
}
.theme-toggle:focus {
outline: none;
}
.theme-toggle:focus-visible {
outline: 2px solid var(--hover);
outline-offset: 2px;
}
.theme-toggle:hover .theme-toggle__icon {
fill: var(--hover);
}
.page__nav ul {
padding-right: 3rem;
}
2024-04-25 01:09:17 +00:00
/* load preferred font */
2024-04-20 21:30:54 +00:00
@font-face {
font-family: 'Berkeley Mono';
font-style: normal;
font-weight: 400;
2024-04-23 21:38:42 +00:00
font-display: fallback;
2024-04-20 21:30:54 +00:00
src: local('Berkeley Mono'),
2024-04-23 17:26:18 +00:00
url('https://cdn.runtimeterror.dev/fonts/BerkeleyMono-Regular.woff2') format('woff2'),
2024-04-20 21:30:54 +00:00
}
2024-06-19 19:02:03 +00:00
/* minor layout tweaks */
2023-08-16 21:53:17 +00:00
.page {
max-width: 72rem;
}
2024-06-19 19:02:03 +00:00
.page__body {
margin: 1rem;
}
.page__aside {
margin: 0 1rem 0 0;
}
2023-08-16 21:53:17 +00:00
/* logo tweaks */
.page__logo {
2024-08-15 20:50:26 +00:00
color: var(--logo-text);
2023-08-16 21:53:17 +00:00
}
.page__logo-inner {
opacity: 0.80;
}
2023-11-06 21:23:24 +00:00
/* Footer tweaks */
2024-06-24 21:26:57 +00:00
.footer_slashes {
2023-11-06 21:23:24 +00:00
font-size: 14px;
2024-06-24 21:26:57 +00:00
line-height: 1.1rem;
color: var(--muted);
}
.footer_slashes a:link, .footer_slashes a:visited {
color: var(--link);
text-decoration: none;
2023-11-06 21:23:24 +00:00
}
2024-06-24 21:26:57 +00:00
.footer_links, .copyright {
2023-11-06 21:23:24 +00:00
font-size: 12px;
line-height: 1.1rem;
color: var(--muted);
}
2024-06-24 21:26:57 +00:00
.footer_links a:link, .footer_links a:visited,
.copyright a:link, .copyright a:visited{
2023-11-06 21:23:24 +00:00
color: var(--off-fg);
text-decoration: none;
}
2024-06-24 21:26:57 +00:00
.footer_links a:hover,
.footer_slashes a:hover,
.copyright a:hover {
2023-11-06 21:23:24 +00:00
color: var(--hover);
text-decoration: underline;
}
2023-08-16 01:27:46 +00:00
/* Notice CSS Built on hugo-notice by Nicolas Martignoni: https://github.com/martignoni/hugo-notice */
.notice {
2024-08-16 02:09:22 +00:00
--notice-title-color: #fff;
--notice-warn-color: #c33;
--notice-info-color: #fb7;
--notice-note-color: #6be;
--notice-tip-color: #5a5;
--notice-padding: 18px;
--notice-line-height: 24px;
--notice-margin-bottom: 24px;
--notice-border-radius: 4px;
--notice-title-margin: 12px;
--notice-bg-opacity: 10%;
padding: var(--notice-padding);
line-height: var(--notice-line-height);
margin-bottom: var(--notice-margin-bottom);
border-radius: var(--notice-border-radius);
color: var(--fg);
2023-08-16 01:27:46 +00:00
}
.notice p:last-child {
margin-bottom: 0;
}
.notice-title {
2024-08-16 02:09:22 +00:00
margin: calc(-1 * var(--notice-padding));
margin-bottom: var(--notice-title-margin);
padding: 4px var(--notice-padding);
border-radius: var(--notice-border-radius) var(--notice-border-radius) 0 0;
2023-08-16 01:27:46 +00:00
font-weight: 700;
2024-08-16 02:09:22 +00:00
color: var(--notice-title-color);
2023-08-16 01:27:46 +00:00
}
2024-08-16 02:09:22 +00:00
.notice.warning .notice-title { background: var(--notice-warning-color); }
.notice.info .notice-title { background: var(--notice-info-color); }
.notice.note .notice-title { background: var(--notice-note-color); }
.notice.tip .notice-title { background: var(--notice-tip-color); }
2023-08-16 01:27:46 +00:00
2024-08-16 02:09:22 +00:00
.notice.warning { background: color-mix(in srgb, var(--notice-warning-color) var(--notice-bg-opacity), transparent); }
.notice.info { background: color-mix(in srgb, var(--notice-info-color) var(--notice-bg-opacity), transparent); }
.notice.note { background: color-mix(in srgb, var(--notice-note-color) var(--notice-bg-opacity), transparent); }
.notice.tip { background: color-mix(in srgb, var(--notice-tip-color) var(--notice-bg-opacity), transparent); }
2023-08-16 01:27:46 +00:00
.icon-notice {
display: inline-flex;
align-self: center;
margin-right: 8px;
}
.icon-notice img,
.icon-notice svg {
height: 1em;
width: 1em;
fill: currentColor;
}
.icon-notice img,
.icon-notice.baseline svg {
top: 0.125em;
position: relative;
}
2023-11-13 16:05:14 +00:00
/* pagination overrides */
ul.pagination li::marker {
content:'';
}
ul.pagination li {
margin: 0 0.25rem;
}
2023-11-13 16:05:14 +00:00
.pagination {
display:flex;
justify-content: center;
}
/* statuslol overrides */
2023-12-23 23:00:24 +00:00
.statuslol {
background: var(--off-bg) !important;
2023-12-29 14:49:53 +00:00
flex-direction:column
}
.statuslol_emoji_container {
font-size: 1.5em !important;
2023-12-23 23:00:24 +00:00
}
.statuslol_content p,
.statuslol_content li,
.statuslol_content em,
.statuslol_content strong {
2023-12-29 14:49:53 +00:00
overflow-wrap: inherit;
2023-12-23 23:00:24 +00:00
font-size: 0.8em;
line-height:normal;
2023-12-29 14:49:53 +00:00
margin: 0.8em auto;
2023-12-23 23:00:24 +00:00
color: var(--fg);
}
.statuslol_time a:link,
.statuslol_time a:visited {
color: var(--link) !important;
}
.statuslol_time a:hover,
.statuslol_time a:active {
2023-12-23 23:00:24 +00:00
color: var(--hover) !important;
}
small[style^="opacity: .5"] {
opacity: 1 !important;
}
/* theme song styling */
.theme-song {
2024-06-29 02:14:51 +00:00
background: var(--off-bg) !important;
display: flex;
flex-direction: column;
border-radius: 0.5rem;
padding: 0.7rem;
font-size: 0.9rem;
line-height: 0.9rem;
}
.theme-song img {
width: 14rem;
height: auto;
object-fit: cover;
2024-06-29 02:14:51 +00:00
}
@media (min-width: 45rem) {
.theme-song img {
max-width: 100%;
margin: 0 auto;
}
2024-06-29 02:14:51 +00:00
}
/* code overrides */
pre,
code,
kbd,
samp {
color: var(--code);
2024-01-15 23:07:23 +00:00
}
/* search box styling */
form {
display: flex;
flex-direction: row;
border-radius: 0.25rem;
2024-01-16 00:12:56 +00:00
outline: 0.25rem solid var(--bg);
2024-01-16 17:24:35 +00:00
width: 240px;
transition: width .2s ease-in-out, outline .2s ease-in-out;
2024-01-15 23:07:23 +00:00
}
input {
flex-grow: 2;
border: none;
background-color: var(--off-bg);
color: var(--off-fg);
2024-01-16 00:12:56 +00:00
height: 1.5rem;
2024-06-19 19:02:03 +00:00
border-radius: 0.25rem 0 0 0.25rem;
2024-01-16 00:12:56 +00:00
padding-left: 0.5rem;
font-family: var(--font-monospace);
2024-01-15 23:07:23 +00:00
}
2024-06-19 19:02:03 +00:00
form {
width:auto;
}
2024-01-15 23:07:23 +00:00
input:focus {
outline: none;
}
form:focus-within {
outline: 1px solid var(--logo);
2024-01-16 17:24:35 +00:00
width: 100%;
2024-01-15 23:07:23 +00:00
}
form button {
outline: none;
border: none;
background-color: var(--off-bg);
2024-01-16 00:12:56 +00:00
color: var(--link);
2024-01-19 02:43:00 +00:00
}
/* tags list styling */
.tagsArchive {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
grid-gap: 0.5rem;
margin: 0.5rem 0;
}
.tagsArchive sup {
font-size: 0.75rem;
margin-left: 0.2rem;
margin-right: 0.5rem;
2024-01-19 04:07:51 +00:00
}
.date {
font-size: 0.8rem;
color: var(--off-fg);
2024-01-19 20:38:35 +00:00
}
/* blockquote styling */
blockquote {
font-style: italic;
border-left: 0.25rem solid var(--logo);
padding-left: 0.25rem;
2024-01-19 23:14:18 +00:00
}
/* post front matter styling*/
.frontmatter hr {
margin-bottom: 0rem;
margin-top: 0rem;
}
.frontmatter h1 {
margin-top: 0rem;
}
.frontmatter .label {
color: var(--off-fg);
font-size: 0.8rem;
}
.frontmatter .title {
color: var(--fg);
font-weight: 600;
font-size: 1.1rem;
}
.frontmatter table {
overflow-wrap: break-word;
margin-bottom: 0rem;
}
.frontmatter_tags {
font-size: 0.8rem;
color: var(--off-fg);
2024-01-22 03:16:15 +00:00
}
/* back-to-top styling */
#back-to-top {
background: var(--inner-bg);
height: 56px;
width: 56px;
}
#back-to-top svg {
fill: var(--link);
2024-01-22 03:21:30 +00:00
}
/* footnote link styling */
.footnote-backref {
text-decoration: none;
2024-01-23 21:22:08 +00:00
}
/* hr override */
hr {
margin-top: 1.5rem;
2024-04-27 19:08:35 +00:00
}
/* no extra space for paragraphs with lists */
p:not(:has(+ ol)),
p:not(:has(+ ul)) {
margin-bottom: 1.5em;
}
p:has(+ ol),
p:has(+ ul) {
margin-bottom: 0;
}
2024-06-19 19:20:28 +00:00
/* tagline tweaks */
#tagline_container {
height: 3rem;
}
#tagline {
font-size: 0.8rem;
line-height: 0.8rem;
}
#tagline::after {
content: "";
width: 0.5rem;
2024-06-19 19:20:28 +00:00
height: 1rem;
background: var(--muted);
display: inline-block;
margin-left: 0.2rem;
vertical-align: text-bottom;
animation: cursor-blink 1.5s steps(2) infinite;
}
@keyframes cursor-blink {
0% {
opacity: 0;
}
}
/* Cabin kudos styling */
2024-06-25 00:30:57 +00:00
.kudos-container {
display: flex;
2024-06-25 00:30:57 +00:00
align-items: center;
}
2024-06-25 00:30:57 +00:00
.kudos-button {
background: none;
border: none;
cursor: pointer;
font-size: 1.2rem;
padding: 0;
2024-06-25 00:30:57 +00:00
margin-right: 0.25rem;
}
2024-06-25 00:30:57 +00:00
.kudos-button:disabled {
cursor: default;
color: var(--fg);
2024-06-25 00:30:57 +00:00
}
.kudos-button .emoji {
display: inline-block;
transition: transform 0.3s ease;
}
2024-06-25 00:30:57 +00:00
.kudos-button.clicked .emoji {
transform: rotate(360deg);
}
.kudos-text {
transition: font-style 0.3s ease;
}
.kudos-text.thanks {
font-style: italic;
}