|
@@ -37,6 +37,7 @@
|
|
|
|
|
|
--ths: var(--bgh), calc(var(--bgs) * var(--tsm));
|
|
--ths: var(--bgh), calc(var(--bgs) * var(--tsm));
|
|
--color-text-base: hsl(var(--ths), calc(var(--scheme) var(--cm) * 58%));
|
|
--color-text-base: hsl(var(--ths), calc(var(--scheme) var(--cm) * 58%));
|
|
|
|
+ --color-text-base-muted: hsl(var(--ths), calc(var(--scheme) var(--cm) * 52%));
|
|
--color-text-highlight: hsl(var(--ths), calc(var(--scheme) var(--cm) * 85%));
|
|
--color-text-highlight: hsl(var(--ths), calc(var(--scheme) var(--cm) * 85%));
|
|
--color-text-subdue: hsl(var(--ths), calc(var(--scheme) var(--cm) * 35%));
|
|
--color-text-subdue: hsl(var(--ths), calc(var(--scheme) var(--cm) * 35%));
|
|
|
|
|
|
@@ -57,6 +58,14 @@
|
|
font-size: var(--font-size-h4);
|
|
font-size: var(--font-size-h4);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.page-content, .page.content-ready .page-loading-container {
|
|
|
|
+ display: none;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.page.content-ready > .page-content {
|
|
|
|
+ display: block;
|
|
|
|
+}
|
|
|
|
+
|
|
.page-column-full .size-title-dynamic {
|
|
.page-column-full .size-title-dynamic {
|
|
font-size: var(--font-size-h3);
|
|
font-size: var(--font-size-h3);
|
|
}
|
|
}
|
|
@@ -71,14 +80,16 @@
|
|
white-space: nowrap;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
|
|
-.text-truncate-3-lines {
|
|
|
|
|
|
+.text-truncate-2-lines, .text-truncate-3-lines {
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
text-overflow: ellipsis;
|
|
- -webkit-line-clamp: 3;
|
|
|
|
display: -webkit-box;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.text-truncate-3-lines { -webkit-line-clamp: 3; }
|
|
|
|
+.text-truncate-2-lines { -webkit-line-clamp: 2; }
|
|
|
|
+
|
|
.visited-indicator:not(.text-truncate)::after,
|
|
.visited-indicator:not(.text-truncate)::after,
|
|
.visited-indicator.text-truncate::before,
|
|
.visited-indicator.text-truncate::before,
|
|
.bookmarks-link:not(.bookmarks-link-no-arrow)::after {
|
|
.bookmarks-link:not(.bookmarks-link-no-arrow)::after {
|
|
@@ -106,6 +117,7 @@
|
|
.list-gap-14 { --list-half-gap: 0.7rem; }
|
|
.list-gap-14 { --list-half-gap: 0.7rem; }
|
|
.list-gap-20 { --list-half-gap: 1rem; }
|
|
.list-gap-20 { --list-half-gap: 1rem; }
|
|
.list-gap-24 { --list-half-gap: 1.2rem; }
|
|
.list-gap-24 { --list-half-gap: 1.2rem; }
|
|
|
|
+.list-gap-34 { --list-half-gap: 1.7rem; }
|
|
|
|
|
|
.list > *:not(:first-child) {
|
|
.list > *:not(:first-child) {
|
|
margin-top: calc(var(--list-half-gap) * 2);
|
|
margin-top: calc(var(--list-half-gap) * 2);
|
|
@@ -117,70 +129,85 @@
|
|
padding-top: var(--list-half-gap);
|
|
padding-top: var(--list-half-gap);
|
|
}
|
|
}
|
|
|
|
|
|
-@keyframes listItemReveal {
|
|
|
|
- from {
|
|
|
|
- opacity: 0;
|
|
|
|
- transform: translateY(10px);
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.list-collapsible-item {
|
|
|
|
|
|
+.collapsible-container:not(.container-expanded) > .collapsible-item {
|
|
display: none;
|
|
display: none;
|
|
- animation: listItemReveal 0.3s backwards;
|
|
|
|
- animation-delay: var(--animation-delay);
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-.list-collapsible-label {
|
|
|
|
- display: flex;
|
|
|
|
- align-items: center;
|
|
|
|
- gap: 1rem;
|
|
|
|
- padding: var(--widget-content-vertical-padding) 0;
|
|
|
|
- background: var(--color-widget-background);
|
|
|
|
|
|
+.collapsible-item {
|
|
|
|
+ animation: collapsibleItemReveal .25s backwards;
|
|
}
|
|
}
|
|
|
|
|
|
-.list-collapsible-label:has(.list-collapsible-input:checked) {
|
|
|
|
- position: sticky;
|
|
|
|
- bottom: 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.list-collapsible:has(+ .list-collapsible-label > .list-collapsible-input:checked) .list-collapsible-item {
|
|
|
|
- display: block;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.list-collapsible-input {
|
|
|
|
- display: none;
|
|
|
|
|
|
+@keyframes collapsibleItemReveal {
|
|
|
|
+ from {
|
|
|
|
+ opacity: 0;
|
|
|
|
+ transform: translateY(10px);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
-.list-collapsible-label::before, .list-collapsible-label::after {
|
|
|
|
|
|
+.expand-toggle-button {
|
|
|
|
+ font: inherit;
|
|
|
|
+ border: 0;
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
display: block;
|
|
display: block;
|
|
|
|
+ width: 100%;
|
|
|
|
+ text-align: left;
|
|
|
|
+ color: var(--color-text-base);
|
|
|
|
+ text-transform: uppercase;
|
|
|
|
+ font-size: var(--font-size-h4);
|
|
|
|
+ padding: var(--widget-content-vertical-padding) 0;
|
|
|
|
+ background: var(--color-widget-background);
|
|
}
|
|
}
|
|
|
|
|
|
-.list-collapsible-label::before {
|
|
|
|
- content: 'SHOW MORE';
|
|
|
|
- font-size: var(--font-size-h4);
|
|
|
|
|
|
+.expand-toggle-button.container-expanded {
|
|
|
|
+ position: sticky;
|
|
|
|
+ /* -1px to hide 1px gap on chrome */
|
|
|
|
+ bottom: -1px;
|
|
}
|
|
}
|
|
|
|
|
|
-.list-collapsible-label:has(.list-collapsible-input:checked)::before {
|
|
|
|
- content: 'SHOW LESS';
|
|
|
|
|
|
+.expand-toggle-button-icon {
|
|
|
|
+ display: inline-block;
|
|
|
|
+ margin-left: 1rem;
|
|
|
|
+ position: relative;
|
|
|
|
+ top: -.2rem;
|
|
}
|
|
}
|
|
|
|
|
|
-.list-collapsible-label::after {
|
|
|
|
|
|
+.expand-toggle-button-icon::before {
|
|
content: '';
|
|
content: '';
|
|
font-size: 0.8rem;
|
|
font-size: 0.8rem;
|
|
transform: rotate(90deg);
|
|
transform: rotate(90deg);
|
|
line-height: 1;
|
|
line-height: 1;
|
|
|
|
+ display: inline-block;
|
|
transition: transform 0.3s;
|
|
transition: transform 0.3s;
|
|
}
|
|
}
|
|
|
|
|
|
-.list-collapsible-label:has(.list-collapsible-input:checked)::after {
|
|
|
|
|
|
+.expand-toggle-button.container-expanded .expand-toggle-button-icon::before {
|
|
transform: rotate(-90deg);
|
|
transform: rotate(-90deg);
|
|
}
|
|
}
|
|
|
|
|
|
-.widget-content:has(.list-collapsible-label:last-child) {
|
|
|
|
|
|
+.widget-content:has(.expand-toggle-button:last-child) {
|
|
padding-bottom: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.cards-grid.collapsible-container + .expand-toggle-button {
|
|
|
|
+ text-align: center;
|
|
|
|
+ margin-top: 0.5rem;
|
|
|
|
+ background-color: var(--color-background);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.attachments {
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
+ gap: 0.5rem;
|
|
|
|
+ margin-left: -0.5rem;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.attachments > * {
|
|
|
|
+ border-radius: var(--border-radius);
|
|
|
|
+ padding: 0.1rem 0.5rem;
|
|
|
|
+ font-size: var(--font-size-h6);
|
|
|
|
+ background-color: var(--color-separator);
|
|
|
|
+}
|
|
|
|
+
|
|
::selection {
|
|
::selection {
|
|
background-color: hsl(var(--bghs), calc(var(--scheme) (var(--scheme) var(--bgl) + 20%)));
|
|
background-color: hsl(var(--bghs), calc(var(--scheme) (var(--scheme) var(--bgl) + 20%)));
|
|
color: var(--color-text-highlight);
|
|
color: var(--color-text-highlight);
|
|
@@ -706,7 +733,7 @@ body {
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
width: calc(100% / 12);
|
|
width: calc(100% / 12);
|
|
padding-top: 3px;
|
|
padding-top: 3px;
|
|
- max-width: 3.5rem;
|
|
|
|
|
|
+ max-width: 30px;
|
|
}
|
|
}
|
|
|
|
|
|
.weather-column-value, .weather-columns:hover .weather-column-value {
|
|
.weather-column-value, .weather-columns:hover .weather-column-value {
|
|
@@ -840,6 +867,10 @@ body {
|
|
transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.clock-time span {
|
|
|
|
+ color: var(--color-text-highlight);
|
|
|
|
+}
|
|
|
|
+
|
|
.monitor-site-icon {
|
|
.monitor-site-icon {
|
|
display: block;
|
|
display: block;
|
|
opacity: 0.8;
|
|
opacity: 0.8;
|
|
@@ -866,11 +897,22 @@ body {
|
|
|
|
|
|
.thumbnail {
|
|
.thumbnail {
|
|
filter: grayscale(0.2) contrast(0.9);
|
|
filter: grayscale(0.2) contrast(0.9);
|
|
- transition: all 0.2s;
|
|
|
|
opacity: 0.8;
|
|
opacity: 0.8;
|
|
|
|
+ transition: filter 0.2s, opacity .2s;
|
|
}
|
|
}
|
|
|
|
|
|
-.thumbnail-container:hover .thumbnail {
|
|
|
|
|
|
+.thumbnail-container {
|
|
|
|
+ flex-shrink: 0;
|
|
|
|
+ border: 1px solid var(--color-separator);
|
|
|
|
+ border-radius: var(--border-radius);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.thumbnail-container > * {
|
|
|
|
+ border-radius: var(--border-radius);
|
|
|
|
+ object-fit: cover;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.thumbnail-parent:hover .thumbnail {
|
|
opacity: 1;
|
|
opacity: 1;
|
|
filter: none;
|
|
filter: none;
|
|
}
|
|
}
|
|
@@ -918,6 +960,20 @@ body {
|
|
z-index: 3;
|
|
z-index: 3;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+.rss-detailed-description {
|
|
|
|
+ max-width: 55rem;
|
|
|
|
+ color: var(--color-text-base-muted);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.rss-detailed-thumbnail {
|
|
|
|
+ margin-top: 0.3rem;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+.rss-detailed-thumbnail > * {
|
|
|
|
+ aspect-ratio: 3 / 2;
|
|
|
|
+ height: 8.7rem;
|
|
|
|
+}
|
|
|
|
+
|
|
.twitch-category-thumbnail {
|
|
.twitch-category-thumbnail {
|
|
width: 5rem;
|
|
width: 5rem;
|
|
border-radius: var(--border-radius);
|
|
border-radius: var(--border-radius);
|
|
@@ -996,10 +1052,10 @@ body {
|
|
|
|
|
|
.page-column {
|
|
.page-column {
|
|
display: none;
|
|
display: none;
|
|
- animation: columnEntrance 0s cubic-bezier(0.25, 1, 0.5, 1) backwards;
|
|
|
|
|
|
+ animation: columnEntrance .0s cubic-bezier(0.25, 1, 0.5, 1) backwards;
|
|
}
|
|
}
|
|
|
|
|
|
- .animate-element-transition .page-column {
|
|
|
|
|
|
+ .page-columns-transitioned .page-column {
|
|
animation-duration: .3s;
|
|
animation-duration: .3s;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1107,9 +1163,48 @@ body {
|
|
box-shadow: 0 calc(var(--spacing) * -1) 0 0 currentColor, 0 var(--spacing) 0 0 currentColor;
|
|
box-shadow: 0 calc(var(--spacing) * -1) 0 0 currentColor, 0 var(--spacing) 0 0 currentColor;
|
|
}
|
|
}
|
|
|
|
|
|
- .list-collapsible-label:has(.list-collapsible-input:checked) {
|
|
|
|
|
|
+ .expand-toggle-button.container-expanded {
|
|
bottom: var(--mobile-navigation-height);
|
|
bottom: var(--mobile-navigation-height);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ .cards-grid + .expand-toggle-button.container-expanded {
|
|
|
|
+ /* hides content that peeks through the rounded borders of the mobile navigation */
|
|
|
|
+ box-shadow: 0 var(--border-radius) 0 0 var(--color-background);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .weather-column-rain::before {
|
|
|
|
+ background-size: 7px 7px;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+@media (max-width: 1190px) and (display-mode: standalone) {
|
|
|
|
+ :root {
|
|
|
|
+ --safe-area-inset-bottom: env(safe-area-inset-bottom, 0);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .list-collapsible-label:has(.list-collapsible-input:checked) {
|
|
|
|
+ bottom: calc(var(--mobile-navigation-height) + var(--safe-area-inset-bottom));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .mobile-navigation {
|
|
|
|
+ transform: translateY(calc(100% - var(--mobile-navigation-height) - var(--safe-area-inset-bottom)));
|
|
|
|
+ padding-bottom: var(--safe-area-inset-bottom);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .mobile-navigation-icons {
|
|
|
|
+ padding-bottom: var(--safe-area-inset-bottom);
|
|
|
|
+ transition: padding-bottom .3s;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .mobile-navigation-icons:has(.mobile-navigation-page-links-input:checked) {
|
|
|
|
+ padding-bottom: 0;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+@media (display-mode: standalone) {
|
|
|
|
+ body {
|
|
|
|
+ padding-top: env(safe-area-inset-top, 0);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
@media (max-width: 550px) {
|
|
@media (max-width: 550px) {
|
|
@@ -1123,22 +1218,30 @@ body {
|
|
|
|
|
|
.dynamic-columns:has(> :nth-child(1)) { --columns-per-row: 1; }
|
|
.dynamic-columns:has(> :nth-child(1)) { --columns-per-row: 1; }
|
|
|
|
|
|
- .forum-post-list-item {
|
|
|
|
- flex-flow: row-reverse;
|
|
|
|
|
|
+ .row-reverse-on-mobile {
|
|
|
|
+ flex-direction: row-reverse;
|
|
}
|
|
}
|
|
|
|
|
|
- .hide-on-mobile {
|
|
|
|
|
|
+ .hide-on-mobile, .thumbnail-container:has(> .hide-on-mobile) {
|
|
display: none
|
|
display: none
|
|
}
|
|
}
|
|
|
|
|
|
.mobile-reachability-header {
|
|
.mobile-reachability-header {
|
|
display: block;
|
|
display: block;
|
|
font-size: 3rem;
|
|
font-size: 3rem;
|
|
- padding: 10dvh 1rem;
|
|
|
|
|
|
+ padding: 10vh 1rem;
|
|
text-align: center;
|
|
text-align: center;
|
|
color: var(--color-text-highlight);
|
|
color: var(--color-text-highlight);
|
|
animation: pageColumnsEntrance .3s cubic-bezier(0.25, 1, 0.5, 1) backwards;
|
|
animation: pageColumnsEntrance .3s cubic-bezier(0.25, 1, 0.5, 1) backwards;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ .rss-detailed-thumbnail > * {
|
|
|
|
+ height: 6rem;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .rss-detailed-description {
|
|
|
|
+ -webkit-line-clamp: 3;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
.size-h1 { font-size: var(--font-size-h1); }
|
|
.size-h1 { font-size: var(--font-size-h1); }
|
|
@@ -1166,6 +1269,7 @@ body {
|
|
.shrink { flex-shrink: 1; }
|
|
.shrink { flex-shrink: 1; }
|
|
.shrink-0 { flex-shrink: 0; }
|
|
.shrink-0 { flex-shrink: 0; }
|
|
.min-width-0 { min-width: 0; }
|
|
.min-width-0 { min-width: 0; }
|
|
|
|
+.max-width-100 { max-width: 100%; }
|
|
.block { display: block; }
|
|
.block { display: block; }
|
|
.overflow-hidden { overflow: hidden; }
|
|
.overflow-hidden { overflow: hidden; }
|
|
.relative { position: relative; }
|
|
.relative { position: relative; }
|
|
@@ -1185,6 +1289,10 @@ body {
|
|
.gap-7 { gap: 0.7rem; }
|
|
.gap-7 { gap: 0.7rem; }
|
|
.gap-10 { gap: 1rem; }
|
|
.gap-10 { gap: 1rem; }
|
|
.gap-15 { gap: 1.5rem; }
|
|
.gap-15 { gap: 1.5rem; }
|
|
|
|
+.gap-25 { gap: 2.5rem; }
|
|
|
|
+.gap-35 { gap: 3.5rem; }
|
|
|
|
+.gap-45 { gap: 4.5rem; }
|
|
|
|
+.gap-55 { gap: 5.5rem; }
|
|
.margin-top-3 { margin-top: 0.3rem; }
|
|
.margin-top-3 { margin-top: 0.3rem; }
|
|
.margin-top-5 { margin-top: 0.5rem; }
|
|
.margin-top-5 { margin-top: 0.5rem; }
|
|
.margin-top-7 { margin-top: 0.7rem; }
|
|
.margin-top-7 { margin-top: 0.7rem; }
|
|
@@ -1201,65 +1309,4 @@ body {
|
|
.margin-bottom-10 { margin-bottom: 1rem; }
|
|
.margin-bottom-10 { margin-bottom: 1rem; }
|
|
.margin-bottom-15 { margin-bottom: 1.5rem; }
|
|
.margin-bottom-15 { margin-bottom: 1.5rem; }
|
|
.margin-bottom-auto { margin-bottom: auto; }
|
|
.margin-bottom-auto { margin-bottom: auto; }
|
|
-
|
|
|
|
-.search-form {
|
|
|
|
- margin: 0;
|
|
|
|
- padding: var(--widget-content-padding);
|
|
|
|
- background-color: var(--color-background);
|
|
|
|
- border-radius: 20px;
|
|
|
|
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
|
|
- width: 100%;
|
|
|
|
- display: flex;
|
|
|
|
- align-items: center;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.search-input-container {
|
|
|
|
- position: relative;
|
|
|
|
- width: 100%;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.search-input {
|
|
|
|
- width: 100%;
|
|
|
|
- padding: 10px 40px 10px 10px;
|
|
|
|
- font-size: var(--font-size-h2);
|
|
|
|
- border: 1px solid var(--color-widget-content-border);
|
|
|
|
- border-radius: 20px;
|
|
|
|
- color: white;
|
|
|
|
- background: var(--color-background);
|
|
|
|
- transition: border-color 0.15s ease;
|
|
|
|
- font-family: 'JetBrains Mono', monospace;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.search-input:focus {
|
|
|
|
- outline: none;
|
|
|
|
- border-color: var(--color-primary);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.search-input:placeholder-shown {
|
|
|
|
- color: var(--color-text-subdue);
|
|
|
|
- font-family: 'JetBrains Mono', monospace;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.search-button {
|
|
|
|
- position: absolute;
|
|
|
|
- right: 10px;
|
|
|
|
- top: 50%;
|
|
|
|
- transform: translateY(-50%);
|
|
|
|
- background: none;
|
|
|
|
- border: none;
|
|
|
|
- cursor: pointer;
|
|
|
|
- display: flex;
|
|
|
|
- align-items: center;
|
|
|
|
- justify-content: center;
|
|
|
|
- padding: 0;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.search-button svg {
|
|
|
|
- width: 24px;
|
|
|
|
- height: 24px;
|
|
|
|
- color: white;
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-.search-button:hover svg {
|
|
|
|
- color: var(--color-text-highlight);
|
|
|
|
-}
|
|
|
|
|
|
+.scale-half { transform: scale(0.5); }
|