updated logging, added theming, added settings button
This commit is contained in:
parent
51b2ef43bc
commit
ca15fb7ec5
25 changed files with 384 additions and 62 deletions
72
static/css/light.css
Normal file
72
static/css/light.css
Normal file
|
@ -0,0 +1,72 @@
|
|||
:root {
|
||||
--html-bg: #ffffff;
|
||||
--font-fg: #000000;
|
||||
--fg: #202124;
|
||||
|
||||
--search-bg: #ffffff;
|
||||
--search-bg-input: #f6f6f6;
|
||||
--search-bg-input-border: #dadce0;
|
||||
--search-select: #eeeeee;
|
||||
|
||||
--border: #dadce0;
|
||||
|
||||
--link: #1a0dab;
|
||||
--link-visited: #681da8;
|
||||
|
||||
--snip-border: #dadce0;
|
||||
--snip-background: #ffffff;
|
||||
--snip-text: #000000;
|
||||
|
||||
--settings-border: #5f6368;
|
||||
--button: #f6f6f6;
|
||||
|
||||
--footer-bg: #f6f6f6;
|
||||
--footer-font: #353535;
|
||||
|
||||
--highlight: #202124;
|
||||
|
||||
--blue: #4285f4;
|
||||
|
||||
--green: #202124;
|
||||
|
||||
--image-view: #ffffff;
|
||||
--image-view-titlebar: #ffffff;
|
||||
--view-image-color: #f1f3f4;
|
||||
--image-select: #f6f6f6;
|
||||
--fff: #fff;
|
||||
|
||||
--publish-info: #202124;
|
||||
|
||||
--search-button: #202124;
|
||||
}
|
||||
|
||||
.wrapper-results:hover,
|
||||
.wrapper-results:focus-within,
|
||||
.wrapper:hover,
|
||||
.wrapper:focus-within {
|
||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08) !important;
|
||||
transition: all 0.3s cubic-bezier(.25, .8, .25, 1) !important;
|
||||
}
|
||||
|
||||
.check p {
|
||||
color: var(--highlight) !important;
|
||||
}
|
||||
|
||||
.image_view {
|
||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08) !important;
|
||||
transition: all 0.3s cubic-bezier(.25, .8, .25, 1) !important;
|
||||
}
|
||||
|
||||
.search-menu {
|
||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08) !important;
|
||||
}
|
||||
|
||||
.view-image-search {
|
||||
box-shadow: none;
|
||||
transition: all 0.3s cubic-bezier(.25, .8, .25, 1) !important;
|
||||
}
|
||||
|
||||
.view-image-search:hover {
|
||||
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08) !important;
|
||||
transition: all 0.3s cubic-bezier(.25, .8, .25, 1) !important;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue