mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-12-25 05:42:22 +00:00
gruvboxed github
This commit is contained in:
parent
2c09cb4666
commit
98b9b205e3
5 changed files with 6576 additions and 83 deletions
|
@ -1,9 +1,14 @@
|
||||||
[xin_1]
|
[:0.0]
|
||||||
file=/home/leon/Bilder/wallpapers/girl.png
|
file=/home/leon/Bilder/wallpapers/wallhaven-ox2gr9.jpg
|
||||||
mode=5
|
mode=5
|
||||||
bgcolor=#000000
|
bgcolor=#000000
|
||||||
|
|
||||||
[xin_0]
|
[xin_0]
|
||||||
file=/home/leon/Bilder/wallpapers/girl.png
|
file=/home/leon/Bilder/wallpapers/green_leaves.jpg
|
||||||
|
mode=5
|
||||||
|
bgcolor=#000000
|
||||||
|
|
||||||
|
[xin_1]
|
||||||
|
file=/home/leon/Bilder/wallpapers/green_leaves.jpg
|
||||||
mode=5
|
mode=5
|
||||||
bgcolor=#000000
|
bgcolor=#000000
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
[geometry]
|
[geometry]
|
||||||
posx=20
|
posx=20
|
||||||
posy=1130
|
posy=1130
|
||||||
sizex=1250
|
sizex=763
|
||||||
sizey=1370
|
sizey=862
|
||||||
|
|
||||||
[nitrogen]
|
[nitrogen]
|
||||||
view=icon
|
view=icon
|
||||||
|
|
|
@ -148,7 +148,7 @@ myTabTheme = def -- defaultThemeWithButtons
|
||||||
--activeColor = "#1d2021"
|
--activeColor = "#1d2021"
|
||||||
--activeColor = "#504945"
|
--activeColor = "#504945"
|
||||||
--, inactiveColor = "#282828"
|
--, inactiveColor = "#282828"
|
||||||
, inactiveColor = "#1d2021"
|
, inactiveColor = "#282828"
|
||||||
, activeBorderColor = "#1d2021"
|
, activeBorderColor = "#1d2021"
|
||||||
, inactiveBorderColor = "#282828"
|
, inactiveBorderColor = "#282828"
|
||||||
, activeTextColor = "#fbf1c7"
|
, activeTextColor = "#fbf1c7"
|
||||||
|
|
|
@ -1,42 +1,142 @@
|
||||||
|
/* ==UserStyle==
|
||||||
|
@name duckduckgo-gruvbox-elkowar
|
||||||
|
@namespace github.com/openstyles/stylus
|
||||||
|
@version 1.0.0
|
||||||
|
@description gruvboxed duckduckgo
|
||||||
|
@author ElKowar
|
||||||
|
@preprocessor stylus
|
||||||
|
==/UserStyle== */
|
||||||
|
@-moz-document domain("duckduckgo.com") {
|
||||||
|
:root {
|
||||||
|
--bg1: #1d2021;
|
||||||
|
--bg2: #282828;
|
||||||
|
--bg3: #504945;
|
||||||
|
--bg4: #202020;
|
||||||
|
--fg1: #ebdbb2;
|
||||||
|
--fg1: #d5c4a1;
|
||||||
|
--fg3: #a89984;
|
||||||
|
--col_blue: #83a598;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: var(--bg2);
|
||||||
|
}
|
||||||
|
|
||||||
*,
|
*,
|
||||||
div[class*="result"],
|
div[class*="result"],
|
||||||
.result__snippet b,
|
.result__snippet b,
|
||||||
.result__date {
|
.result__date {
|
||||||
color: #ebdbb2 !important;
|
color: var(--fg1) !important;
|
||||||
font-family: "xos4 terminus" !important;
|
font-family: "xos4 terminus" !important;
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#duckbar a.zcm__link {
|
#duckbar a.zcm__link {
|
||||||
border-bottom-color: #ebdbb2 !important;
|
border-bottom-color: var(--fg1) !important;
|
||||||
|
padding: 0 10px;
|
||||||
|
margin: 0 0;
|
||||||
|
transition: background-color 0.1s ease-in-out;
|
||||||
|
&:hover {
|
||||||
|
background-color: var(--bg1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.switch {
|
||||||
|
background-color: var(--bg3);
|
||||||
|
}
|
||||||
|
|
||||||
|
.zci,
|
||||||
|
.tile-wrap,
|
||||||
|
.metabar,
|
||||||
|
.zci-wrap {
|
||||||
|
background-color: var(--bg2) !important;
|
||||||
|
border: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tile {
|
||||||
|
background-color: var(--bg2);
|
||||||
|
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
|
||||||
|
border: none !important;
|
||||||
|
transition: box-shadow 0.1s ease-in-out;
|
||||||
|
&.highlight {
|
||||||
|
box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.8) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
background-color: var(--bg2);
|
||||||
|
display: none !important;
|
||||||
|
.footer__card {
|
||||||
|
background-color: var(--bg1) !important;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn.feedback-btn,
|
||||||
|
.feedback-prompt,
|
||||||
|
.header__clickable[data-type="showcase"],
|
||||||
|
.header__label.social {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal__box,
|
||||||
|
.modal__header {
|
||||||
|
background: var(--bg2) !important;
|
||||||
|
& > * {
|
||||||
|
background: var(--bg2) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
pre.prettyprint,
|
||||||
|
code {
|
||||||
|
background-color: var(--bg1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.module__toggle--more::after {
|
||||||
|
background: linear-gradient(var(--bg2), var(--bg1)) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modal__list__link.is-highlighted {
|
||||||
|
background-color: var(--bg3) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.module__clickable-header > * {
|
||||||
|
color: var(--fg1) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn.btn--full {
|
||||||
|
background-color: var(--bg1);
|
||||||
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.switch__knob {
|
.switch__knob {
|
||||||
background-color: #ebdbb2 !important;
|
background-color: var(--fg1) !important;
|
||||||
}
|
|
||||||
|
|
||||||
a.result__url > * {
|
|
||||||
color: #83a598 !important;
|
|
||||||
font-family: "cozette" !important
|
|
||||||
}
|
|
||||||
a.result__a {
|
|
||||||
font-size: 1.2rem !important;
|
|
||||||
font-family: "xos4 terminus" !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
div.header-wrap,
|
|
||||||
.site-wrapper {
|
.site-wrapper {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
background-color: #282828 !important;
|
background-color: var(--bg2) !important;
|
||||||
|
|
||||||
|
.header-wrap {
|
||||||
|
background-color: var(--bg2);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.header__logo {
|
.header__logo {
|
||||||
filter: sepia(80%);
|
filter: sepia(80%);
|
||||||
}
|
}
|
||||||
|
|
||||||
form#search_form {
|
form#search_form {
|
||||||
background-color: #202020 !important;
|
background-color: var(--bg4) !important;
|
||||||
box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.3);
|
box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.3);
|
||||||
border: none;
|
border: none;
|
||||||
transition: box-shadow 0.1s ease-in-out;
|
transition: box-shadow 0.1s ease-in-out;
|
||||||
|
@ -44,47 +144,88 @@ form#search_form {
|
||||||
|
|
||||||
div.result {
|
div.result {
|
||||||
transition: box-shadow 0.1s ease-in-out;
|
transition: box-shadow 0.1s ease-in-out;
|
||||||
}
|
border: none;
|
||||||
div.result.highlight {
|
&.highlight {
|
||||||
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3) !important;
|
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3) !important;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
border: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
form#search_form > input {
|
a.result__url > * {
|
||||||
|
color: var(--col_blue) !important;
|
||||||
|
font-family: "cozette" !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
a.result__a {
|
||||||
|
font-size: 1.2rem !important;
|
||||||
|
font-family: "xos4 terminus" !important;
|
||||||
|
}
|
||||||
|
.result__snippet {
|
||||||
|
font-size: 1rem;
|
||||||
|
color: var(--fg2) !important;
|
||||||
|
}
|
||||||
|
img.result__icon__img {
|
||||||
|
filter: sepia(60%) contrast(130%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.msg--spelling :link,
|
||||||
|
.msg--spelling :visited,
|
||||||
|
.msg--spelling a:hover,
|
||||||
|
.msg__clear,
|
||||||
|
.msg__clear:hover,
|
||||||
|
.msg__all,
|
||||||
|
.msg__all:visited {
|
||||||
|
color: var(--fg1) !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dropdown.dropdown--region {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#search_form {
|
||||||
|
input {
|
||||||
z-index: 10 !important;
|
z-index: 10 !important;
|
||||||
background-color: #202020 !important;
|
background-color: var(--bg4) !important;
|
||||||
|
&[type="submit"],
|
||||||
|
&[type="button"] {
|
||||||
|
background-color: rgba(0, 0, 0, 0) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
form#search_form input[type="submit"], form#search_form input[type="button"] {
|
|
||||||
display: none;
|
|
||||||
}
|
}
|
||||||
|
&.search--focus,
|
||||||
#search_form.search--focus, #search_form.search--hover {
|
&.search--hover {
|
||||||
box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.3);
|
box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.3);
|
||||||
}
|
}
|
||||||
|
&.search--focus,
|
||||||
|
&.search--hover #search_button {
|
||||||
#search_form.search--focus, #search_form.search--hover #search_button {
|
background-color: var(--bg4);
|
||||||
background-color: #202020;
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.search__autocomplete {
|
.search__autocomplete {
|
||||||
transform: translateY(15px);
|
transform: translateY(15px);
|
||||||
z-index: 5 !important;
|
z-index: 5 !important;
|
||||||
border: none;
|
border: none;
|
||||||
padding-right: 2px;
|
padding-right: 2px;
|
||||||
background-color: #202020;
|
background-color: var(--bg4);
|
||||||
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
|
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
|
||||||
|
& > * {
|
||||||
|
background-color: var(--bg4);
|
||||||
|
&.t-normal {
|
||||||
|
color: var(--fg3) !important;
|
||||||
}
|
}
|
||||||
|
&:not(.t-normal) {
|
||||||
.search__autocomplete > * {
|
|
||||||
background-color: #202020;
|
|
||||||
}
|
|
||||||
.search__autocomplete > * .t-normal {
|
|
||||||
color: #a89984 !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.search__autocomplete >*>:not(.t-normal) {
|
|
||||||
font-weight: normal !important;
|
font-weight: normal !important;
|
||||||
color: #ebdbb2 !important;
|
color: var(--fg1) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-filters-wrap::after,
|
||||||
|
.search-filters-wrap::before,
|
||||||
|
.metabar__dropdowns-wrap::before,
|
||||||
|
.metabar__dropdowns-wrap::after {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
6347
files/github_gruvbox.css
Normal file
6347
files/github_gruvbox.css
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue