mirror of
https://github.com/picocss/pico.git
synced 2025-04-20 16:46:14 -04:00
rebuilt css files, For some reason was having issues with the line endings, hopefully the editorconfig will fix it.
This commit is contained in:
parent
137d6bf55e
commit
7ce5b5c578
244 changed files with 6471 additions and 2306 deletions
33
.editorconfig
Normal file
33
.editorconfig
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# EditorConfig is awesome: https://EditorConfig.org
|
||||||
|
|
||||||
|
# top-most EditorConfig file
|
||||||
|
root = true
|
||||||
|
|
||||||
|
# Unix-style newlines with a newline ending every file
|
||||||
|
[*]
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
||||||
|
charset = utf-8
|
||||||
|
trim_trailing_whitespace = true
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
# JavaScript and JSON files
|
||||||
|
[*.{js,json}]
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
# SCSS files
|
||||||
|
[*.scss]
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
# Markdown files
|
||||||
|
[*.md]
|
||||||
|
trim_trailing_whitespace = false
|
||||||
|
|
||||||
|
# Package files
|
||||||
|
[package.json]
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
# Config files
|
||||||
|
[*.{yml,yaml}]
|
||||||
|
indent_size = 2
|
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -47,27 +48,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -225,7 +231,8 @@ details summary[role=button]:not(.outline)::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -344,12 +351,19 @@ details summary[role=button]:not(.outline)::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -461,6 +475,11 @@ details summary[role=button]:not(.outline)::after {
|
||||||
[type=submit],
|
[type=submit],
|
||||||
[type=button],
|
[type=button],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
|
[role=button]):not(.outline)::before,
|
||||||
|
:host(:not([data-theme])) [aria-busy=true]:not(input, select, textarea).contrast:is(button,
|
||||||
|
[type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
[role=button]):not(.outline)::before {
|
[role=button]):not(.outline)::before {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
|
@ -469,10 +488,17 @@ details summary[role=button]:not(.outline)::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
:root:not([data-theme]) details summary[role=button].contrast:not(.outline)::after {
|
:root:not([data-theme]) details summary[role=button].contrast:not(.outline)::after,
|
||||||
|
:host(:not([data-theme])) details summary[role=button].contrast:not(.outline)::after {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -627,7 +653,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1500,7 +1527,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1681,7 +1707,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2652,9 +2679,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2662,13 +2690,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2680,10 +2711,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -3037,7 +3075,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.amber.min.css
vendored
2
css/pico.amber.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -47,27 +48,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -225,7 +231,8 @@ details summary[role=button]:not(.outline)::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -344,12 +351,19 @@ details summary[role=button]:not(.outline)::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -461,6 +475,11 @@ details summary[role=button]:not(.outline)::after {
|
||||||
[type=submit],
|
[type=submit],
|
||||||
[type=button],
|
[type=button],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
|
[role=button]):not(.outline)::before,
|
||||||
|
:host(:not([data-theme])) [aria-busy=true]:not(input, select, textarea).contrast:is(button,
|
||||||
|
[type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
[role=button]):not(.outline)::before {
|
[role=button]):not(.outline)::before {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
|
@ -469,10 +488,17 @@ details summary[role=button]:not(.outline)::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
:root:not([data-theme]) details summary[role=button].contrast:not(.outline)::after {
|
:root:not([data-theme]) details summary[role=button].contrast:not(.outline)::after,
|
||||||
|
:host(:not([data-theme])) details summary[role=button].contrast:not(.outline)::after {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -627,7 +653,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1500,7 +1527,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1681,7 +1707,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2652,9 +2679,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2662,13 +2690,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2680,10 +2711,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -3037,7 +3075,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.blue.min.css
vendored
2
css/pico.blue.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.amber.min.css
vendored
2
css/pico.classless.amber.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.blue.min.css
vendored
2
css/pico.classless.blue.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.conditional.amber.min.css
vendored
2
css/pico.classless.conditional.amber.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.conditional.blue.min.css
vendored
2
css/pico.classless.conditional.blue.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.conditional.cyan.min.css
vendored
2
css/pico.classless.conditional.cyan.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.conditional.green.min.css
vendored
2
css/pico.classless.conditional.green.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.conditional.grey.min.css
vendored
2
css/pico.classless.conditional.grey.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.conditional.jade.min.css
vendored
2
css/pico.classless.conditional.jade.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.conditional.lime.min.css
vendored
2
css/pico.classless.conditional.lime.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.conditional.pink.min.css
vendored
2
css/pico.classless.conditional.pink.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.conditional.red.min.css
vendored
2
css/pico.classless.conditional.red.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.conditional.sand.min.css
vendored
2
css/pico.classless.conditional.sand.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.conditional.slate.min.css
vendored
2
css/pico.classless.conditional.slate.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ input:not([type=submit],
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ input:not([type=submit],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ input:not([type=submit],
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.conditional.zinc.min.css
vendored
2
css/pico.classless.conditional.zinc.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.cyan.min.css
vendored
2
css/pico.classless.cyan.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.fuchsia.min.css
vendored
2
css/pico.classless.fuchsia.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.green.min.css
vendored
2
css/pico.classless.green.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.grey.min.css
vendored
2
css/pico.classless.grey.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.indigo.min.css
vendored
2
css/pico.classless.indigo.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.jade.min.css
vendored
2
css/pico.classless.jade.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.lime.min.css
vendored
2
css/pico.classless.lime.min.css
vendored
File diff suppressed because one or more lines are too long
2
css/pico.classless.min.css
vendored
2
css/pico.classless.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.orange.min.css
vendored
2
css/pico.classless.orange.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.pink.min.css
vendored
2
css/pico.classless.pink.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.pumpkin.min.css
vendored
2
css/pico.classless.pumpkin.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.purple.min.css
vendored
2
css/pico.classless.purple.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.red.min.css
vendored
2
css/pico.classless.red.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.sand.min.css
vendored
2
css/pico.classless.sand.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.slate.min.css
vendored
2
css/pico.classless.slate.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.violet.min.css
vendored
2
css/pico.classless.violet.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.yellow.min.css
vendored
2
css/pico.classless.yellow.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -45,27 +46,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -192,7 +198,8 @@ details summary[role=button]::after {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -306,12 +313,19 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -419,6 +433,12 @@ details summary[role=button]::after {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
@ -559,7 +579,8 @@ progress,
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1386,7 +1407,6 @@ button,
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1515,7 +1535,8 @@ img {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
svg:not(:root) {
|
svg:not(:root),
|
||||||
|
svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2486,9 +2507,10 @@ details[open] > summary::after {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
article {
|
article,
|
||||||
|
[role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2496,13 +2518,16 @@ article {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
article > header,
|
article > header,
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > header,
|
||||||
|
[role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
article > header {
|
article > header,
|
||||||
|
[role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2514,10 +2539,17 @@ article > header > h2,
|
||||||
article > header > h3,
|
article > header > h3,
|
||||||
article > header > h4,
|
article > header > h4,
|
||||||
article > header > h5,
|
article > header > h5,
|
||||||
article > header > h6 {
|
article > header > h6,
|
||||||
|
[role=article] > header > h1,
|
||||||
|
[role=article] > header > h2,
|
||||||
|
[role=article] > header > h3,
|
||||||
|
[role=article] > header > h4,
|
||||||
|
[role=article] > header > h5,
|
||||||
|
[role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
article > footer {
|
article > footer,
|
||||||
|
[role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2711,7 +2743,8 @@ a[aria-busy=true] {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.classless.zinc.min.css
vendored
2
css/pico.classless.zinc.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -3,7 +3,8 @@
|
||||||
* Pico CSS ✨ v2.0.6 (https://picocss.com)
|
* Pico CSS ✨ v2.0.6 (https://picocss.com)
|
||||||
* Copyright 2019-2024 - Licensed under MIT
|
* Copyright 2019-2024 - Licensed under MIT
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-color-red-950: #1c0d06;
|
--pico-color-red-950: #1c0d06;
|
||||||
--pico-color-red-900: #30130a;
|
--pico-color-red-900: #30130a;
|
||||||
--pico-color-red-850: #45150c;
|
--pico-color-red-850: #45150c;
|
||||||
|
|
2
css/pico.colors.min.css
vendored
2
css/pico.colors.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -47,27 +48,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -225,7 +231,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -344,12 +351,19 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -461,6 +475,11 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=submit],
|
[type=submit],
|
||||||
[type=button],
|
[type=button],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
|
[role=button]):not(.outline)::before,
|
||||||
|
:host(:not([data-theme])) .pico [aria-busy=true]:not(input, select, textarea).contrast:is(button,
|
||||||
|
[type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
[role=button]):not(.outline)::before {
|
[role=button]):not(.outline)::before {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
|
@ -469,10 +488,17 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after {
|
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after,
|
||||||
|
:host(:not([data-theme])) .pico details summary[role=button].contrast:not(.outline)::after {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -627,7 +653,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1500,7 +1527,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1681,7 +1707,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2652,9 +2679,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2662,13 +2690,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2680,10 +2711,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -3037,7 +3075,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.conditional.amber.min.css
vendored
2
css/pico.conditional.amber.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -47,27 +48,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -225,7 +231,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -344,12 +351,19 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -461,6 +475,11 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=submit],
|
[type=submit],
|
||||||
[type=button],
|
[type=button],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
|
[role=button]):not(.outline)::before,
|
||||||
|
:host(:not([data-theme])) .pico [aria-busy=true]:not(input, select, textarea).contrast:is(button,
|
||||||
|
[type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
[role=button]):not(.outline)::before {
|
[role=button]):not(.outline)::before {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
|
@ -469,10 +488,17 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after {
|
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after,
|
||||||
|
:host(:not([data-theme])) .pico details summary[role=button].contrast:not(.outline)::after {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -627,7 +653,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1500,7 +1527,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1681,7 +1707,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2652,9 +2679,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2662,13 +2690,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2680,10 +2711,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -3037,7 +3075,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.conditional.blue.min.css
vendored
2
css/pico.conditional.blue.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -47,27 +48,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -225,7 +231,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -344,12 +351,19 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -461,6 +475,11 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=submit],
|
[type=submit],
|
||||||
[type=button],
|
[type=button],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
|
[role=button]):not(.outline)::before,
|
||||||
|
:host(:not([data-theme])) .pico [aria-busy=true]:not(input, select, textarea).contrast:is(button,
|
||||||
|
[type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
[role=button]):not(.outline)::before {
|
[role=button]):not(.outline)::before {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
|
@ -469,10 +488,17 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after {
|
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after,
|
||||||
|
:host(:not([data-theme])) .pico details summary[role=button].contrast:not(.outline)::after {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -627,7 +653,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1500,7 +1527,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1681,7 +1707,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2652,9 +2679,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2662,13 +2690,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2680,10 +2711,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -3037,7 +3075,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -47,27 +48,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -225,7 +231,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -344,12 +351,19 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -461,6 +475,11 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=submit],
|
[type=submit],
|
||||||
[type=button],
|
[type=button],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
|
[role=button]):not(.outline)::before,
|
||||||
|
:host(:not([data-theme])) .pico [aria-busy=true]:not(input, select, textarea).contrast:is(button,
|
||||||
|
[type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
[role=button]):not(.outline)::before {
|
[role=button]):not(.outline)::before {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
|
@ -469,10 +488,17 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after {
|
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after,
|
||||||
|
:host(:not([data-theme])) .pico details summary[role=button].contrast:not(.outline)::after {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -627,7 +653,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1500,7 +1527,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1681,7 +1707,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2652,9 +2679,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2662,13 +2690,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2680,10 +2711,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -3037,7 +3075,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.conditional.cyan.min.css
vendored
2
css/pico.conditional.cyan.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -47,27 +48,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -225,7 +231,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -344,12 +351,19 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -461,6 +475,11 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=submit],
|
[type=submit],
|
||||||
[type=button],
|
[type=button],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
|
[role=button]):not(.outline)::before,
|
||||||
|
:host(:not([data-theme])) .pico [aria-busy=true]:not(input, select, textarea).contrast:is(button,
|
||||||
|
[type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
[role=button]):not(.outline)::before {
|
[role=button]):not(.outline)::before {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
|
@ -469,10 +488,17 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after {
|
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after,
|
||||||
|
:host(:not([data-theme])) .pico details summary[role=button].contrast:not(.outline)::after {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -627,7 +653,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1500,7 +1527,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1681,7 +1707,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2652,9 +2679,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2662,13 +2690,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2680,10 +2711,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -3037,7 +3075,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.conditional.fuchsia.min.css
vendored
2
css/pico.conditional.fuchsia.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -47,27 +48,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -225,7 +231,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -344,12 +351,19 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -461,6 +475,11 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=submit],
|
[type=submit],
|
||||||
[type=button],
|
[type=button],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
|
[role=button]):not(.outline)::before,
|
||||||
|
:host(:not([data-theme])) .pico [aria-busy=true]:not(input, select, textarea).contrast:is(button,
|
||||||
|
[type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
[role=button]):not(.outline)::before {
|
[role=button]):not(.outline)::before {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
|
@ -469,10 +488,17 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after {
|
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after,
|
||||||
|
:host(:not([data-theme])) .pico details summary[role=button].contrast:not(.outline)::after {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -627,7 +653,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1500,7 +1527,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1681,7 +1707,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2652,9 +2679,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2662,13 +2690,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2680,10 +2711,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -3037,7 +3075,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.conditional.green.min.css
vendored
2
css/pico.conditional.green.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -47,27 +48,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -225,7 +231,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -344,12 +351,19 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -461,6 +475,11 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=submit],
|
[type=submit],
|
||||||
[type=button],
|
[type=button],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
|
[role=button]):not(.outline)::before,
|
||||||
|
:host(:not([data-theme])) .pico [aria-busy=true]:not(input, select, textarea).contrast:is(button,
|
||||||
|
[type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
[role=button]):not(.outline)::before {
|
[role=button]):not(.outline)::before {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
|
@ -469,10 +488,17 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after {
|
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after,
|
||||||
|
:host(:not([data-theme])) .pico details summary[role=button].contrast:not(.outline)::after {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -627,7 +653,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1500,7 +1527,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1681,7 +1707,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2652,9 +2679,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2662,13 +2690,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2680,10 +2711,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -3037,7 +3075,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.conditional.grey.min.css
vendored
2
css/pico.conditional.grey.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -6,7 +6,8 @@
|
||||||
/**
|
/**
|
||||||
* Styles
|
* Styles
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
--pico-font-family-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
--pico-font-family-sans-serif: system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, Helvetica, Arial, "Helvetica Neue", sans-serif, var(--pico-font-family-emoji);
|
||||||
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
--pico-font-family-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace, var(--pico-font-family-emoji);
|
||||||
|
@ -47,27 +48,32 @@
|
||||||
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
--pico-icon-loading: url("data:image/svg+xml,%3Csvg fill='none' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' %3E%3Cstyle%3E g %7B animation: rotate 2s linear infinite; transform-origin: center center; %7D circle %7B stroke-dasharray: 75,100; stroke-dashoffset: -5; animation: dash 1.5s ease-in-out infinite; stroke-linecap: round; %7D @keyframes rotate %7B 0%25 %7B transform: rotate(0deg); %7D 100%25 %7B transform: rotate(360deg); %7D %7D @keyframes dash %7B 0%25 %7B stroke-dasharray: 1,100; stroke-dashoffset: 0; %7D 50%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -17.5; %7D 100%25 %7B stroke-dasharray: 44.5,100; stroke-dashoffset: -62; %7D %7D %3C/style%3E%3Cg%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='rgb(136, 145, 164)' stroke-width='4' /%3E%3C/g%3E%3C/svg%3E");
|
||||||
}
|
}
|
||||||
@media (min-width: 576px) {
|
@media (min-width: 576px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 106.25%;
|
--pico-font-size: 106.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 112.5%;
|
--pico-font-size: 112.5%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 118.75%;
|
--pico-font-size: 118.75%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1280px) {
|
@media (min-width: 1280px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 125%;
|
--pico-font-size: 125%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 1536px) {
|
@media (min-width: 1536px) {
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-font-size: 131.25%;
|
--pico-font-size: 131.25%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -225,7 +231,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
* Color schemes
|
* Color schemes
|
||||||
*/
|
*/
|
||||||
[data-theme=light],
|
[data-theme=light],
|
||||||
:root:not([data-theme=dark]) {
|
:root:not([data-theme=dark]),
|
||||||
|
:host(:not([data-theme=dark])) {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
--pico-background-color: #fff;
|
--pico-background-color: #fff;
|
||||||
--pico-color: #373c44;
|
--pico-color: #373c44;
|
||||||
|
@ -344,12 +351,19 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme=dark])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (prefers-color-scheme: dark) {
|
@media only screen and (prefers-color-scheme: dark) {
|
||||||
:root:not([data-theme]) {
|
:root:not([data-theme]),
|
||||||
|
:host(:not([data-theme])) {
|
||||||
color-scheme: dark;
|
color-scheme: dark;
|
||||||
--pico-background-color: rgb(19, 22.5, 30.5);
|
--pico-background-color: rgb(19, 22.5, 30.5);
|
||||||
--pico-color: #c2c7d0;
|
--pico-color: #c2c7d0;
|
||||||
|
@ -461,6 +475,11 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=submit],
|
[type=submit],
|
||||||
[type=button],
|
[type=button],
|
||||||
[type=reset],
|
[type=reset],
|
||||||
|
[role=button]):not(.outline)::before,
|
||||||
|
:host(:not([data-theme])) .pico [aria-busy=true]:not(input, select, textarea).contrast:is(button,
|
||||||
|
[type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
[role=button]):not(.outline)::before {
|
[role=button]):not(.outline)::before {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
|
@ -469,10 +488,17 @@ nav details.dropdown summary:focus-visible {
|
||||||
[type=reset],
|
[type=reset],
|
||||||
[type=checkbox],
|
[type=checkbox],
|
||||||
[type=radio],
|
[type=radio],
|
||||||
|
[type=file]),
|
||||||
|
:host(:not([data-theme])) input:is([type=submit],
|
||||||
|
[type=button],
|
||||||
|
[type=reset],
|
||||||
|
[type=checkbox],
|
||||||
|
[type=radio],
|
||||||
[type=file]) {
|
[type=file]) {
|
||||||
--pico-form-element-focus-color: var(--pico-primary-focus);
|
--pico-form-element-focus-color: var(--pico-primary-focus);
|
||||||
}
|
}
|
||||||
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after {
|
:root:not([data-theme]) .pico details summary[role=button].contrast:not(.outline)::after,
|
||||||
|
:host(:not([data-theme])) .pico details summary[role=button].contrast:not(.outline)::after {
|
||||||
filter: brightness(0);
|
filter: brightness(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -627,7 +653,8 @@ nav details.dropdown summary:focus-visible {
|
||||||
vertical-align: inherit;
|
vertical-align: inherit;
|
||||||
}
|
}
|
||||||
|
|
||||||
:where(:root) {
|
:where(:root),
|
||||||
|
:where(:host) {
|
||||||
-webkit-tap-highlight-color: transparent;
|
-webkit-tap-highlight-color: transparent;
|
||||||
-webkit-text-size-adjust: 100%;
|
-webkit-text-size-adjust: 100%;
|
||||||
-moz-text-size-adjust: 100%;
|
-moz-text-size-adjust: 100%;
|
||||||
|
@ -1500,7 +1527,6 @@ main {
|
||||||
line-height: var(--pico-line-height);
|
line-height: var(--pico-line-height);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
cursor: pointer;
|
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
@ -1681,7 +1707,8 @@ main {
|
||||||
fill: currentColor;
|
fill: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pico svg:not(:root) {
|
.pico svg:not(:root),
|
||||||
|
.pico svg:not(:host) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2652,9 +2679,10 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Card (<article>)
|
* Card (<article>, role="article")
|
||||||
*/
|
*/
|
||||||
.pico article {
|
.pico article,
|
||||||
|
.pico [role=article] {
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
padding: var(--pico-block-spacing-vertical) var(--pico-block-spacing-horizontal);
|
||||||
border-radius: var(--pico-border-radius);
|
border-radius: var(--pico-border-radius);
|
||||||
|
@ -2662,13 +2690,16 @@ main {
|
||||||
box-shadow: var(--pico-card-box-shadow);
|
box-shadow: var(--pico-card-box-shadow);
|
||||||
}
|
}
|
||||||
.pico article > header,
|
.pico article > header,
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > header,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-right: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
margin-left: calc(var(--pico-block-spacing-horizontal) * -1);
|
||||||
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
padding: calc(var(--pico-block-spacing-vertical) * 0.66) var(--pico-block-spacing-horizontal);
|
||||||
background-color: var(--pico-card-sectioning-background-color);
|
background-color: var(--pico-card-sectioning-background-color);
|
||||||
}
|
}
|
||||||
.pico article > header {
|
.pico article > header,
|
||||||
|
.pico [role=article] > header {
|
||||||
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-top: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
margin-bottom: var(--pico-block-spacing-vertical);
|
margin-bottom: var(--pico-block-spacing-vertical);
|
||||||
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-bottom: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -2680,10 +2711,17 @@ main {
|
||||||
.pico article > header > h3,
|
.pico article > header > h3,
|
||||||
.pico article > header > h4,
|
.pico article > header > h4,
|
||||||
.pico article > header > h5,
|
.pico article > header > h5,
|
||||||
.pico article > header > h6 {
|
.pico article > header > h6,
|
||||||
|
.pico [role=article] > header > h1,
|
||||||
|
.pico [role=article] > header > h2,
|
||||||
|
.pico [role=article] > header > h3,
|
||||||
|
.pico [role=article] > header > h4,
|
||||||
|
.pico [role=article] > header > h5,
|
||||||
|
.pico [role=article] > header > h6 {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
.pico article > footer {
|
.pico article > footer,
|
||||||
|
.pico [role=article] > footer {
|
||||||
margin-top: var(--pico-block-spacing-vertical);
|
margin-top: var(--pico-block-spacing-vertical);
|
||||||
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
margin-bottom: calc(var(--pico-block-spacing-vertical) * -1);
|
||||||
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
border-top: var(--pico-border-width) solid var(--pico-card-border-color);
|
||||||
|
@ -3037,7 +3075,8 @@ main {
|
||||||
/**
|
/**
|
||||||
* Modal (<dialog>)
|
* Modal (<dialog>)
|
||||||
*/
|
*/
|
||||||
:root {
|
:root,
|
||||||
|
:host {
|
||||||
--pico-scrollbar-width: 0px;
|
--pico-scrollbar-width: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
css/pico.conditional.indigo.min.css
vendored
2
css/pico.conditional.indigo.min.css
vendored
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue