Update new.css
This commit is contained in:
parent
ecf2fa1279
commit
8f1ce6f7bd
1 changed files with 36 additions and 22 deletions
56
articles/static/vendor/newcss.css
vendored
56
articles/static/vendor/newcss.css
vendored
|
@ -1,10 +1,13 @@
|
||||||
/** New CSS
|
/** New CSS
|
||||||
Version 1.1.2
|
https://github.com/xz/new.css
|
||||||
https://cdn.jsdelivr.net/npm/@exampledev/new.css@1.1.2/new.css
|
commit 45cc63d759c3960095a6d8cf97f8663c6561efcc
|
||||||
|
MIT License
|
||||||
*/
|
*/
|
||||||
:root {
|
:root {
|
||||||
--nc-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
--nc-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
||||||
--nc-font-mono: Consolas, monaco, 'Ubuntu Mono', 'Liberation Mono', 'Courier New', Courier, monospace;
|
--nc-font-mono: 'JetBrains Mono', Consolas, monaco, 'Ubuntu Mono', 'Liberation Mono', 'Courier New', Courier, monospace;
|
||||||
|
|
||||||
|
/* Light theme */
|
||||||
--nc-tx-1: #000000;
|
--nc-tx-1: #000000;
|
||||||
--nc-tx-2: #1A1A1A;
|
--nc-tx-2: #1A1A1A;
|
||||||
--nc-bg-1: #FFFFFF;
|
--nc-bg-1: #FFFFFF;
|
||||||
|
@ -15,20 +18,32 @@
|
||||||
--nc-lk-tx: #FFFFFF;
|
--nc-lk-tx: #FFFFFF;
|
||||||
--nc-ac-1: #79FFE1;
|
--nc-ac-1: #79FFE1;
|
||||||
--nc-ac-tx: #0C4047;
|
--nc-ac-tx: #0C4047;
|
||||||
|
|
||||||
|
/* Dark theme */
|
||||||
|
--nc-d-tx-1: #ffffff;
|
||||||
|
--nc-d-tx-2: #eeeeee;
|
||||||
|
--nc-d-bg-1: #000000;
|
||||||
|
--nc-d-bg-2: #111111;
|
||||||
|
--nc-d-bg-3: #222222;
|
||||||
|
--nc-d-lk-1: #3291FF;
|
||||||
|
--nc-d-lk-2: #0070F3;
|
||||||
|
--nc-d-lk-tx: #FFFFFF;
|
||||||
|
--nc-d-ac-1: #7928CA;
|
||||||
|
--nc-d-ac-tx: #FFFFFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
@media (prefers-color-scheme: dark) {
|
||||||
:root {
|
:root {
|
||||||
--nc-tx-1: #ffffff;
|
--nc-tx-1: var(--nc-d-tx-1);
|
||||||
--nc-tx-2: #eeeeee;
|
--nc-tx-2: var(--nc-d-tx-2);
|
||||||
--nc-bg-1: #000000;
|
--nc-bg-1: var(--nc-d-bg-1);
|
||||||
--nc-bg-2: #111111;
|
--nc-bg-2: var(--nc-d-bg-2);
|
||||||
--nc-bg-3: #222222;
|
--nc-bg-3: var(--nc-d-bg-3);
|
||||||
--nc-lk-1: #3291FF;
|
--nc-lk-1: var(--nc-d-lk-1);
|
||||||
--nc-lk-2: #0070F3;
|
--nc-lk-2: var(--nc-d-lk-2);
|
||||||
--nc-lk-tx: #FFFFFF;
|
--nc-lk-tx: var(--nc-d-lk-tx);
|
||||||
--nc-ac-1: #7928CA;
|
--nc-ac-1: var(--nc-d-ac-1);
|
||||||
--nc-ac-tx: #FFFFFF;
|
--nc-ac-tx: var(--nc-d-ac-tx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -227,7 +242,6 @@ input[type="button"] {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: var(--nc-lk-tx);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
a button[disabled],
|
a button[disabled],
|
||||||
|
@ -235,7 +249,6 @@ button[disabled],
|
||||||
input[type="submit"][disabled],
|
input[type="submit"][disabled],
|
||||||
input[type="reset"][disabled],
|
input[type="reset"][disabled],
|
||||||
input[type="button"][disabled] {
|
input[type="button"][disabled] {
|
||||||
cursor: default;
|
|
||||||
opacity: .5;
|
opacity: .5;
|
||||||
|
|
||||||
/* Set the [X] cursor while hovering a disabled link */
|
/* Set the [X] cursor while hovering a disabled link */
|
||||||
|
@ -243,15 +256,15 @@ input[type="button"][disabled] {
|
||||||
}
|
}
|
||||||
|
|
||||||
.button:focus,
|
.button:focus,
|
||||||
.button:hover,
|
.button:enabled:hover,
|
||||||
button:focus,
|
button:focus,
|
||||||
button:hover,
|
button:enabled:hover,
|
||||||
input[type="submit"]:focus,
|
input[type="submit"]:focus,
|
||||||
input[type="submit"]:hover,
|
input[type="submit"]:enabled:hover,
|
||||||
input[type="reset"]:focus,
|
input[type="reset"]:focus,
|
||||||
input[type="reset"]:hover,
|
input[type="reset"]:enabled:hover,
|
||||||
input[type="button"]:focus,
|
input[type="button"]:focus,
|
||||||
input[type="button"]:hover {
|
input[type="button"]:enabled:hover {
|
||||||
background: var(--nc-lk-2);
|
background: var(--nc-lk-2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -272,7 +285,8 @@ pre {
|
||||||
border: 1px solid var(--nc-bg-3);
|
border: 1px solid var(--nc-bg-3);
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
padding: 3px 6px;
|
padding: 3px 6px;
|
||||||
font-size: 0.9rem;
|
/* ↓ font-size is relative to containing element, so it scales for titles*/
|
||||||
|
font-size: 0.9em;
|
||||||
}
|
}
|
||||||
|
|
||||||
kbd {
|
kbd {
|
||||||
|
|
Reference in a new issue