added working settings page
This commit is contained in:
parent
6b3373f7d6
commit
b726530bc2
16 changed files with 549 additions and 89 deletions
100
static/css/mocha.css
Normal file
100
static/css/mocha.css
Normal file
|
@ -0,0 +1,100 @@
|
|||
:root {
|
||||
--rosewater: #dc8a78;
|
||||
--flamingo: #dd7878;
|
||||
--pink: #ea76cb;
|
||||
--mauve: #8839ef;
|
||||
--red: #d20f39;
|
||||
--maroon: #e64553;
|
||||
--peach: #fe640b;
|
||||
--yellow: #df8e1d;
|
||||
--green: #40a02b;
|
||||
--teal: #179299;
|
||||
--sky: #04a5e5;
|
||||
--sapphire: #209fb5;
|
||||
--blue: #1e66f5;
|
||||
--lavender: #7287fd;
|
||||
--text: #4c4f69;
|
||||
--subtext1: #5c5f77;
|
||||
--subtext0: #6c6f85;
|
||||
--overlay2: #7c7f93;
|
||||
--overlay1: #8c8fa1;
|
||||
--overlay0: #9ca0b0;
|
||||
--surface2: #acb0be;
|
||||
--surface1: #bcc0cc;
|
||||
--surface0: #ccd0da;
|
||||
--base: #eff1f5;
|
||||
--mantle: #e6e9ef;
|
||||
--crust: #dce0e8;
|
||||
|
||||
--html-bg: var(--base);
|
||||
--font-fg: var(--text);
|
||||
--fg: var(--subtext0);
|
||||
|
||||
--search-bg: var(--mantle);
|
||||
--search-bg-input: var(--surface1);
|
||||
--search-bg-input-border: var(--overlay0);
|
||||
--search-select: var(--surface0);
|
||||
|
||||
--border: var(--overlay0);
|
||||
|
||||
--link: var(--blue);
|
||||
--link-visited: var(--mauve);
|
||||
|
||||
--snip-border: var(--surface1);
|
||||
--snip-background: var(--surface0);
|
||||
--snip-text: var(--text);
|
||||
|
||||
--settings-border: var(--overlay1);
|
||||
--button: var(--surface1);
|
||||
|
||||
--footer-bg: var(--mantle);
|
||||
--footer-font: var(--overlay1);
|
||||
|
||||
--highlight: var(--subtext1);
|
||||
|
||||
--blue: var(--blue);
|
||||
--green: var(--green);
|
||||
|
||||
--search-button: var(--subtext0);
|
||||
|
||||
--image-view: var(--mantle);
|
||||
--image-view-titlebar: var(--mantle);
|
||||
--view-image-color: var(--crust);
|
||||
--image-select: var(--surface1);
|
||||
--fff: var(--text);
|
||||
|
||||
--publish-info: var(--overlay2);
|
||||
|
||||
color-scheme: light;
|
||||
}
|
||||
|
||||
.calc-btn:hover {
|
||||
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
||||
.calc-btn-2:hover {
|
||||
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
||||
.calc-btn-2 {
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.14);
|
||||
transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
|
||||
}
|
||||
|
||||
.calc-btn {
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.14);
|
||||
transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
|
||||
}
|
||||
|
||||
.calc {
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
|
||||
.view-image-search {
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px rgba(0, 0, 0, 0.14);
|
||||
transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
|
||||
}
|
||||
|
||||
.view-image-search:hover {
|
||||
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.12);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue