Build CSS

This commit is contained in:
github-actions[bot] 2025-01-22 23:41:39 +00:00
parent ba48bb50da
commit 8601e960a0
255 changed files with 2283 additions and 2913 deletions

View file

@ -1,6 +1,6 @@
@charset "UTF-8";
/*!
* Pico CSS v2.2.7 (https://github.com/Yohn/PicoCSS)
* Pico CSS v2.2.8 (https://github.com/Yohn/PicoCSS)
* Copyright 2019-2025 - Licensed under MIT
*/
/**
@ -236,18 +236,18 @@ nav details.dropdown summary:focus-visible {
color-scheme: light;
--pico-background-color: #fff;
--pico-color: #373c44;
--pico-text-selection-color: rgba(205, 104, 224, 0.25);
--pico-text-selection-color: rgba(0, 166, 110, 0.25);
--pico-muted-color: #646b79;
--pico-muted-border-color: rgb(231, 234, 239.5);
--pico-primary: #aa40bf;
--pico-primary-background: #9236a4;
--pico-primary: #007a50;
--pico-primary-background: #007a50;
--pico-primary-border: var(--pico-primary-background);
--pico-primary-underline: rgba(170, 64, 191, 0.5);
--pico-primary-hover: #802e90;
--pico-primary-hover-background: #802e90;
--pico-primary-underline: rgba(0, 122, 80, 0.5);
--pico-primary-hover: #005f3d;
--pico-primary-hover-background: #006d46;
--pico-primary-hover-border: var(--pico-primary-hover-background);
--pico-primary-hover-underline: var(--pico-primary-hover);
--pico-primary-focus: rgba(205, 104, 224, 0.5);
--pico-primary-focus: rgba(0, 166, 110, 0.5);
--pico-primary-inverse: #fff;
--pico-secondary: #5d6b89;
--pico-secondary-background: #525f7a;
@ -391,18 +391,18 @@ nav details.dropdown summary:focus-visible {
color-scheme: dark;
--pico-background-color: rgb(19, 22.5, 30.5);
--pico-color: #c2c7d0;
--pico-text-selection-color: rgba(212, 125, 228, 0.1875);
--pico-text-selection-color: rgba(0, 180, 120, 0.1875);
--pico-muted-color: #7b8495;
--pico-muted-border-color: #202632;
--pico-primary: #d47de4;
--pico-primary-background: #9236a4;
--pico-primary: #00b478;
--pico-primary-background: #007a50;
--pico-primary-border: var(--pico-primary-background);
--pico-primary-underline: rgba(212, 125, 228, 0.5);
--pico-primary-hover: #e2a3eb;
--pico-primary-hover-background: #aa40bf;
--pico-primary-underline: rgba(0, 180, 120, 0.5);
--pico-primary-hover: #00cc88;
--pico-primary-hover-background: #00895a;
--pico-primary-hover-border: var(--pico-primary-hover-background);
--pico-primary-hover-underline: var(--pico-primary-hover);
--pico-primary-focus: rgba(212, 125, 228, 0.375);
--pico-primary-focus: rgba(0, 180, 120, 0.375);
--pico-primary-inverse: #fff;
--pico-secondary: #969eaf;
--pico-secondary-background: #525f7a;
@ -546,18 +546,18 @@ nav details.dropdown summary:focus-visible {
color-scheme: dark;
--pico-background-color: rgb(19, 22.5, 30.5);
--pico-color: #c2c7d0;
--pico-text-selection-color: rgba(212, 125, 228, 0.1875);
--pico-text-selection-color: rgba(0, 180, 120, 0.1875);
--pico-muted-color: #7b8495;
--pico-muted-border-color: #202632;
--pico-primary: #d47de4;
--pico-primary-background: #9236a4;
--pico-primary: #00b478;
--pico-primary-background: #007a50;
--pico-primary-border: var(--pico-primary-background);
--pico-primary-underline: rgba(212, 125, 228, 0.5);
--pico-primary-hover: #e2a3eb;
--pico-primary-hover-background: #aa40bf;
--pico-primary-underline: rgba(0, 180, 120, 0.5);
--pico-primary-hover: #00cc88;
--pico-primary-hover-background: #00895a;
--pico-primary-hover-border: var(--pico-primary-hover-background);
--pico-primary-hover-underline: var(--pico-primary-hover);
--pico-primary-focus: rgba(212, 125, 228, 0.375);
--pico-primary-focus: rgba(0, 180, 120, 0.375);
--pico-primary-inverse: #fff;
--pico-secondary: #969eaf;
--pico-secondary-background: #525f7a;
@ -1772,11 +1772,13 @@ main {
text-align: center;
}
/* clean-css ignore:start */
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) th,
.pico table.striped tbody tr:nth-child(odd of :not([hidden])) td {
background-color: var(--pico-table-row-stripped-background-color);
}
/* clean-css ignore:end */
/**
* Embedded content
*/
@ -2748,18 +2750,18 @@ main {
.pico section[role=form] > textarea + label,
.pico section[role=form] > select + label {
position: absolute;
top: 35%;
top: 0.55rem;
left: 0.8rem;
transform: translateY(-50%);
transform: translateY(0%);
background: var(--pico-form-element-background-color);
color: var(--pico-form-element-placeholder-color);
cursor: text;
transition: 0.3s ease;
}
.pico section[role=form] > input:not(:-moz-placeholder-shown) + label, .pico section[role=form] > textarea:not(:-moz-placeholder-shown) + label {
top: -5%;
top: 0;
padding: calc(var(--pico-spacing) * 0.15) calc(var(--pico-spacing) * 0.5);
transform: translateY(-55%) scale(0.8);
transform: translateY(-50%) scale(0.8);
color: var(--pico-form-element-active-border-color);
font-size: var(--pico-font-size);
line-height: 1.15;
@ -2772,27 +2774,14 @@ main {
.pico section[role=form] > textarea:focus + label,
.pico section[role=form] > select:focus + label,
.pico section[role=form] > select:has(option:checked:not([disabled])) + label {
top: -5%;
top: 0;
padding: calc(var(--pico-spacing) * 0.15) calc(var(--pico-spacing) * 0.5);
transform: translateY(-55%) scale(0.8);
transform: translateY(-50%) scale(0.8);
color: var(--pico-form-element-active-border-color);
font-size: var(--pico-font-size);
line-height: 1.15;
transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pico section[role=form] > textarea + label {
top: 1rem;
transform: translateY(0);
}
.pico section[role=form] > textarea:not(:-moz-placeholder-shown) + label {
top: 0;
transform: translateY(-50%) scale(0.8);
}
.pico section[role=form] > textarea:not(:placeholder-shown) + label,
.pico section[role=form] > textarea:focus + label {
top: 0;
transform: translateY(-50%) scale(0.8);
}
.pico section[role=form] > input:user-invalid:not(:-moz-placeholder-shown) + label, .pico section[role=form] > textarea:user-invalid:not(:-moz-placeholder-shown) + label {
color: var(--pico-form-element-invalid-border-color);
}