Many changes
This commit is contained in:
parent
0526302f3e
commit
90fc6ab4fb
39 changed files with 1416 additions and 18 deletions
|
@ -90,9 +90,23 @@ c.url.searchengines['ciu'] = 'https://caniuse.com/#search={}'
|
|||
c.url.searchengines['mdn'] = 'https://developer.mozilla.org/en-US/search?q={}'
|
||||
# GitHub
|
||||
c.url.searchengines['gh'] = 'https://github.com/search?q={}'
|
||||
# Youtube
|
||||
c.url.searchengines['yt'] = 'https://www.youtube.com/results?search_query={}'
|
||||
# Wikipedia
|
||||
c.url.searchengines['wiki'] = 'https://en.wikipedia.org/wiki/{}'
|
||||
|
||||
|
||||
|
||||
c.hints.selectors["table"] = [
|
||||
"table"
|
||||
]
|
||||
|
||||
c.aliases['burp'] = 'set content.proxy http://127.0.0.1:8080/'
|
||||
c.aliases['noburp'] = 'set content.proxy system'
|
||||
c.aliases['mystyles'] = 'set content.user_stylesheets ~/.local/share/qutebrowser/userstylesheets/default.css'
|
||||
c.aliases['nomystyles'] = 'set content.user_stylesheets ""'
|
||||
|
||||
stylesheetdir='~/.local/share/qutebrowser/userstylesheets/'
|
||||
c.content.user_stylesheets = [stylesheetdir + 'default.css']
|
||||
|
||||
#with config.pattern('*://github.com/') as p:
|
||||
# p.content.user_stylesheets = [stylesheetdir + 'github.css']
|
||||
|
|
10
qutebrowser/.local/share/qutebrowser/userscripts/iconProject
Executable file
10
qutebrowser/.local/share/qutebrowser/userscripts/iconProject
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# This is a qutebrowser user script that is intendet to be run from an icon project page
|
||||
# It will put a vector version of the image on the clipboard, ready to be pasted into something like inkscape
|
||||
|
||||
cat "$QUTE_HTML" | # This is the qutebrowser file repersenting the current page's html
|
||||
hq '.iconPreview' attr style | # This gets the style attribute from the preview element
|
||||
cut -d '"' -f 2 | cut -d ',' -f 2 | # Gets the base 64 out that we want
|
||||
base64 -d | # Decodes it
|
||||
xclip -selection clipboard -target image/svg+xml -i # Puts it on the clipboard
|
|
@ -0,0 +1,3 @@
|
|||
body, p, li, h1, h2, h3, h4, h5, h6, .article-content, .article-content p{
|
||||
font-family: "open-dyslexic";
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
|
|
@ -0,0 +1,327 @@
|
|||
@import "gruvbox-colours.less";
|
||||
@import "stylish.less";
|
||||
|
||||
|
||||
body{
|
||||
font-family: opendyslexic;
|
||||
}
|
||||
|
||||
code, pre, tt, .blob-code-inner{
|
||||
font-family: Iosevka;
|
||||
color: @gb-dm-fg0 !important;
|
||||
}
|
||||
|
||||
textarea{
|
||||
background-color: @gb-dm-bg0;
|
||||
color: @gb-dm-fg0;
|
||||
font-family: opendyslexic;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
//.form-control, .form-select{
|
||||
// border-color: @gb-dm-bg0-hard;
|
||||
// background-color: @gb-dm-bg0;
|
||||
// color: @gb-dm-fg0;
|
||||
// border-width: 2px;
|
||||
//}
|
||||
//
|
||||
footer, .footer, .header-wrap{
|
||||
&, p, li, h1, h2, h3, h4, h5, h6{
|
||||
background-color: @gb-dm-bg0-hard;
|
||||
}
|
||||
}
|
||||
//
|
||||
//#content{
|
||||
// background-color: @gb-dm-bg0;
|
||||
// &, p, li, h1, h2, h3, h4, h5, h6{
|
||||
// color: @gb-dm-fg0;
|
||||
// }
|
||||
//}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Duck Duck Go
|
||||
**/
|
||||
|
||||
.search-filters-wrap{
|
||||
&::before, &::after{
|
||||
content: none;
|
||||
}
|
||||
}
|
||||
.highlight .result__a{
|
||||
&, &:visited,&:visited:hover,&:hover{
|
||||
color: @gb-dm-dark-purple;
|
||||
}
|
||||
}
|
||||
//.result__a{
|
||||
// .a()
|
||||
//}
|
||||
.result__snippet{
|
||||
color: @gb-dm-fg0;
|
||||
font-weight: 400;
|
||||
b{
|
||||
color: @gb-dm-dark-orange;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Git Hub
|
||||
**/
|
||||
|
||||
|
||||
.markdown-body{
|
||||
font-family: opendyslexic;
|
||||
}
|
||||
.repohead.experiment-repo-nav{
|
||||
background-color: @gb-dm-bg0-hard;
|
||||
}
|
||||
.discussion-timeline-actions,
|
||||
.gh-header{
|
||||
background: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.comment-body{
|
||||
background-color: @gb-dm-bg0;
|
||||
}
|
||||
|
||||
.timeline-comment{
|
||||
background-color: @gb-dm-bg0;
|
||||
border-color: @gb-dm-bg0-hard;
|
||||
border-width: 2px;
|
||||
}
|
||||
|
||||
.timeline-comment-header{
|
||||
border-color: @gb-dm-bg0-hard;
|
||||
&, p, li, h1, h2, h3, h4, h5, h6{
|
||||
background-color: @gb-dm-bg0-hard;
|
||||
}
|
||||
}
|
||||
|
||||
.timeline-comment--caret:before{
|
||||
|
||||
}
|
||||
|
||||
.TimelineItem-break{
|
||||
background: none;
|
||||
border-top-color: @gb-dm-bg0-hard;
|
||||
}
|
||||
|
||||
.link-gray-dark{
|
||||
color: inherit !important;
|
||||
}
|
||||
|
||||
.TimelineItem:before{
|
||||
background-color: @gb-dm-bg0-hard;
|
||||
}
|
||||
|
||||
.timeline-comment-wrapper{
|
||||
border-color: @gb-dm-bg0-hard;
|
||||
}
|
||||
|
||||
.comment-reactions.has-reactions{
|
||||
border-color: @gb-dm-bg0-hard;
|
||||
}
|
||||
|
||||
.previewable-comment-form{
|
||||
.comment-form-head.tabnav{
|
||||
background: @gb-dm-bg0-hard;
|
||||
}
|
||||
}
|
||||
|
||||
.drag-and-drop{
|
||||
background: @gb-dm-bg0-hard;
|
||||
}
|
||||
.input-contrast{
|
||||
&, &:focus{
|
||||
background-color: @gb-dm-bg0;
|
||||
color: @gb-dm-fg0;
|
||||
}
|
||||
}
|
||||
|
||||
.bg-gray-light{
|
||||
background-color: @gb-dm-bg0-hard !important;
|
||||
color: @gb-dm-fg0;
|
||||
}
|
||||
|
||||
.full-width .archive-header, .full-width .comments-area, .full-width .image-navigation, .full-width .page-header, .full-width .page-content, .full-width .post-navigation, .full-width .site-content .entry-header, .full-width .site-content .entry-content, .full-width .site-content .entry-summary, .full-width .site-content footer.entry-meta{
|
||||
background-color: @gb-dm-bg0;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Slack
|
||||
**/
|
||||
.p-workspace__top_nav{
|
||||
background-color: @gb-dm-bg0-hard !important;
|
||||
*{
|
||||
color: @gb-dm-fg0 !important;
|
||||
}
|
||||
}
|
||||
.p-channel_sidebar{
|
||||
background-color: @gb-dm-dark-blue !important;
|
||||
}
|
||||
.p-classic_nav__team_header:hover{
|
||||
background-color: @gb-lm-light-blue !important;
|
||||
}
|
||||
.p-channel_sidebar__channel:hover, .p-channel_sidebar__link:hover, .p-channel_sidebar__close_container:hover{
|
||||
background-color: @gb-lm-light-blue !important;
|
||||
}
|
||||
.p-channel_sidebar__section_heading--selected, .p-channel_sidebar__channel--selected, .p-channel_sidebar__channel--selected:hover, .p-channel_sidebar__link--selected, .p-channel_sidebar__link--selected:hover, .p-channel_sidebar__close:focus{
|
||||
background-color: @gb-lm-light-blue !important;
|
||||
}
|
||||
.p-classic_nav__team_header{
|
||||
background-color: @gb-lm-light-blue !important;
|
||||
}
|
||||
.c-message_attachment,.c-message_attachment__author_name{
|
||||
color: @gb-dm-fg0 !important;
|
||||
}
|
||||
.c-icon_button.c-texty_input__button,.p-workspace__input .p-message_input_file_button{
|
||||
color: @gb-dm-fg0 !important;
|
||||
}
|
||||
.c-texty_input .ql-placeholder{
|
||||
color: @gb-dm-fg0 !important;
|
||||
}
|
||||
.p-message_pane .c-message_list.c-virtual_list--scrollbar>.c-scrollbar__hider:before, .p-message_pane .c-message_list:not(.c-virtual_list--scrollbar):before{
|
||||
background-color: @gb-dm-bg0-hard !important;
|
||||
}
|
||||
.p-workspace__input .p-message_input_field,
|
||||
.p-threads_footer__input .p-message_input_field{
|
||||
background-color: @gb-dm-dark-blue !important;
|
||||
color: @gb-dm-fg0 !important;
|
||||
}
|
||||
|
||||
.c-message_list__day_divider__line{
|
||||
border-top: 1px solid @gb-dm-light-orange !important;
|
||||
}
|
||||
|
||||
.c-message_list__day_divider__label__pill{
|
||||
background: @gb-dm-light-orange !important;
|
||||
}
|
||||
|
||||
.c-menu{
|
||||
background-color: @gb-dm-bg0 !important;
|
||||
color: @gb-dm-fg0 !important;
|
||||
.c-menu_item__button, .c-menu_item__button:link, .c-menu_item__button:visited{
|
||||
color: @gb-dm-fg0 !important;
|
||||
}
|
||||
.c-menu_item--standalone:hover, .c-menu_item--standalone:hover:link, .c-menu_item--standalone:hover:visited, .c-menu_item__button--highlighted, .c-menu_item__button--highlighted:link, .c-menu_item__button--highlighted:visited, .no_touch a.c-menu_item__button--highlighted, .no_touch a.c-menu_item__button--highlighted:link, .no_touch a.c-menu_item__button--highlighted:visited{
|
||||
background-color: @gb-dm-dark-aqua !important;
|
||||
}
|
||||
}
|
||||
|
||||
.CodeMirror-code{
|
||||
background-color: @gb-dm-bg0-hard !important;
|
||||
font-family: Iosevka !important;
|
||||
&>div:before{
|
||||
color: @gb-dm-fg0 !important;
|
||||
border-right: 1px solid @gb-dm-fg0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.c-button--primary{
|
||||
background-color: @gb-dm-dark-aqua !important;
|
||||
}
|
||||
|
||||
.ql-editor blockquote, .ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4, .ql-editor h5, .ql-editor h6, .ql-editor ol, .ql-editor p, .ql-editor pre, .ql-editor ul{
|
||||
background-color: @gb-dm-dark-blue !important;
|
||||
color: @gb-dm-fg0 !important;
|
||||
}
|
||||
.c-virtual_list__scroll_container{
|
||||
background-color: @gb-dm-bg0 !important;
|
||||
color: @gb-dm-fg0 !important;
|
||||
.c-message--hover{
|
||||
background-color: @gb-dm-bg0-hard !important;
|
||||
}
|
||||
.c-message__body{
|
||||
color: @gb-dm-fg0 !important;
|
||||
}
|
||||
.c-message__sender, .c-message__sender a, .c-message__sender .c-message__sender_link{
|
||||
color: @gb-dm-fg0 !important;
|
||||
}
|
||||
}
|
||||
.p-workspace__secondary_view{
|
||||
background-color: @gb-dm-bg0 !important;
|
||||
border-left: 2px solid @gb-dm-bg0-hard !important;
|
||||
.p-flexpane_header{
|
||||
background-color: @gb-dm-bg0-soft !important;
|
||||
}
|
||||
.c-icon_button--light, .c-icon_button--light.c-button-unstyled, .c-icon_button--light:link{
|
||||
color: @gb-dm-fg0 !important;
|
||||
}
|
||||
.p-threads_flexpane__header_channel_name, .p-threads_flexpane__header_permalink:focus, .p-threads_flexpane__header_permalink:hover{
|
||||
color: @gb-dm-fg0 !important;
|
||||
}
|
||||
}
|
||||
.c-message--focus-within:not(.c-message--highlight):not(.c-message--standalone):not(.c-message--pinned):not(.c-message--ephemeral):not(.c-message--custom_response):not(.c-message--starred):not(.c-message--sli_highlight), .c-message--hover:not(.c-message--highlight):not(.c-message--standalone):not(.c-message--pinned):not(.c-message--ephemeral):not(.c-message--custom_response):not(.c-message--starred):not(.c-message--sli_highlight), .c-message:hover:not(.c-message--highlight):not(.c-message--standalone):not(.c-message--pinned):not(.c-message--ephemeral):not(.c-message--custom_response):not(.c-message--starred):not(.c-message--sli_highlight){
|
||||
background-color: @gb-dm-bg0-hard !important;
|
||||
}
|
||||
|
||||
/**
|
||||
Arch Wiki
|
||||
**/
|
||||
#content pre, #content code, #content tt{
|
||||
background: @gb-dm-bg0-hard;
|
||||
color: @gb-dm-fg0;
|
||||
font-family: Iosevka;
|
||||
}
|
||||
|
||||
div.archwiki-template-box.archwiki-template-box-tip{
|
||||
background-color: @gb-dm-light-green;
|
||||
border-color: @gb-dm-dark-green;
|
||||
}
|
||||
div.archwiki-template-box.archwiki-template-box-note{
|
||||
background-color: @gb-dm-light-blue;
|
||||
border-color: @gb-dm-dark-blue;
|
||||
}
|
||||
div.archwiki-template-message{
|
||||
background-color: @gb-dm-light-aqua;
|
||||
border-color: @gb-dm-dark-aqua;
|
||||
}
|
||||
.catlinks{
|
||||
background-color: @gb-dm-light-green;
|
||||
border-color: @gb-dm-dark-green;
|
||||
}
|
||||
#toc, .toc, .mw-warning, .toccolours{
|
||||
background-color: @gb-dm-fg2;
|
||||
border: 1px solid @gb-dm-fg4;
|
||||
}
|
||||
|
||||
/**
|
||||
OWA
|
||||
**/
|
||||
|
||||
table.lvw td.sc{
|
||||
background-color: @gb-dm-bg0-soft;
|
||||
}
|
||||
table.lvw th.chd{
|
||||
background-color: @gb-dm-fg0;
|
||||
}
|
||||
table.tbhd{
|
||||
background-color: @gb-dm-light-blue;
|
||||
border-color: @gb-dm-dark-blue;
|
||||
}
|
||||
table.snt td.fld a{
|
||||
color: @gb-dm-fg0;
|
||||
}
|
||||
table.snt td.sl, table.sncts td.sl{
|
||||
a{
|
||||
color: @gb-dm-bg0;
|
||||
}
|
||||
}
|
||||
|
||||
table.pnt td a.pn{
|
||||
background-color: @gb-dm-light-blue;
|
||||
border-color: @gb-dm-dark-blue;
|
||||
}
|
||||
table.pnt td a.s, td.rsz{
|
||||
background-color: @gb-dm-dark-blue;
|
||||
}
|
||||
table.lvw td a{
|
||||
//.a();
|
||||
font-size: 1.3em;
|
||||
}
|
|
@ -0,0 +1,3 @@
|
|||
@import "gruvbox-colours.less";
|
||||
|
||||
|
|
@ -0,0 +1,139 @@
|
|||
// Dark Background
|
||||
@gb-dm-bg0: #282828;
|
||||
@gb-dm-bg0-hard: #1d2021;
|
||||
@gb-dm-bg0-soft: #32302f;
|
||||
@gb-dm-bg1: #3c3836;
|
||||
@gb-dm-bg2: #504945;
|
||||
@gb-dm-bg3: #665c54;
|
||||
@gb-dm-bg4: #7c6f64;
|
||||
// Dark Foreground
|
||||
@gb-dm-fg0: #fbf1c7;
|
||||
@gb-dm-fg1: #ebdbb2;
|
||||
@gb-dm-fg2: #d5c4a1;
|
||||
@gb-dm-fg3: #bdae93;
|
||||
@gb-dm-fg4: #a89984;
|
||||
// Dark Colors
|
||||
@gb-dm-dark-red: #cc241d;
|
||||
@gb-dm-dark-green: #98971a;
|
||||
@gb-dm-dark-yellow: #d79921;
|
||||
@gb-dm-dark-blue: #458588;
|
||||
@gb-dm-dark-purple: #b16286;
|
||||
@gb-dm-dark-aqua: #689d6a;
|
||||
@gb-dm-dark-orange: #d65d0e;
|
||||
@gb-dm-dark-gray: #928374;
|
||||
@gb-dm-light-red: #fb4934;
|
||||
@gb-dm-light-green: #b8bb26;
|
||||
@gb-dm-light-yellow: #fabd2f;
|
||||
@gb-dm-light-blue: #83a598;
|
||||
@gb-dm-light-purple: #d3869b;
|
||||
@gb-dm-light-aqua: #8ec07c;
|
||||
@gb-dm-light-orange: #f38019;
|
||||
@gb-dm-light-gray: #a89984;
|
||||
|
||||
|
||||
|
||||
// Light Background
|
||||
@gb-lm-bg0: #fbf1c7;
|
||||
@gb-lm-bg0-hard: #f9f5d7;
|
||||
@gb-lm-bg0-soft: #f2e5bc;
|
||||
@gb-lm-bg1: #ebdbb2;
|
||||
@gb-lm-bg2: #d5c4a1;
|
||||
@gb-lm-bg3: #bdae93;
|
||||
@gb-lm-bg4: #a89984;
|
||||
|
||||
// Light Foreground
|
||||
@gb-lm-fg0: #282828;
|
||||
@gb-lm-fg1: #3c3836;
|
||||
@gb-lm-fg2: #504945;
|
||||
@gb-lm-fg3: #665c54;
|
||||
@gb-lm-fg4: #7c6f64;
|
||||
|
||||
// Light Colors
|
||||
@gb-lm-dark-red: #cc241d;
|
||||
@gb-lm-dark-green: #98971a;
|
||||
@gb-lm-dark-yellow: #d79921;
|
||||
@gb-lm-dark-blue: #458588;
|
||||
@gb-lm-dark-purple: #b16286;
|
||||
@gb-lm-dark-aqua: #689d6a;
|
||||
@gb-lm-dark-orange: #d65d0e;
|
||||
@gb-lm-dark-gray: #928374;
|
||||
|
||||
@gb-lm-light-red: #9d0006;
|
||||
@gb-lm-light-green: #79740e;
|
||||
@gb-lm-light-yellow: #b57614;
|
||||
@gb-lm-light-blue: #076678;
|
||||
@gb-lm-light-purple: #8f3f71;
|
||||
@gb-lm-light-aqua: #427b58;
|
||||
@gb-lm-light-orange: #af3a03;
|
||||
@gb-lm-light-gray: #7c6f64;
|
||||
|
||||
|
||||
:root{
|
||||
--gb-dm-bg0: @gb-dm-bg0;
|
||||
--gb-dm-bg0-hard: @gb-dm-bg0-hard;
|
||||
--gb-dm-bg0-soft: @gb-dm-bg0-soft;
|
||||
--gb-dm-bg1: @gb-dm-bg1;
|
||||
--gb-dm-bg2: @gb-dm-bg2;
|
||||
--gb-dm-bg3: @gb-dm-bg3;
|
||||
--gb-dm-bg4: @gb-dm-bg4;
|
||||
// Dark Foreground
|
||||
--gb-dm-fg0: @gb-dm-fg0;
|
||||
--gb-dm-fg1: @gb-dm-fg1;
|
||||
--gb-dm-fg2: @gb-dm-fg2;
|
||||
--gb-dm-fg3: @gb-dm-fg3;
|
||||
--gb-dm-fg4: @gb-dm-fg4;
|
||||
// Dark Colors
|
||||
--gb-dm-dark-red: @gb-dm-dark-red;
|
||||
--gb-dm-dark-green: @gb-dm-dark-green;
|
||||
--gb-dm-dark-yellow: @gb-dm-dark-yellow;
|
||||
--gb-dm-dark-blue: @gb-dm-dark-blue;
|
||||
--gb-dm-dark-purple: @gb-dm-dark-purple;
|
||||
--gb-dm-dark-aqua: @gb-dm-dark-aqua;
|
||||
--gb-dm-dark-orange: @gb-dm-dark-orange;
|
||||
--gb-dm-dark-gray: @gb-dm-dark-gray;
|
||||
--gb-dm-light-red: @gb-dm-light-red;
|
||||
--gb-dm-light-green: @gb-dm-light-green;
|
||||
--gb-dm-light-yellow: @gb-dm-light-yellow;
|
||||
--gb-dm-light-blue: @gb-dm-light-blue;
|
||||
--gb-dm-light-purple: @gb-dm-light-purple;
|
||||
--gb-dm-light-aqua: @gb-dm-light-aqua;
|
||||
--gb-dm-light-orange: @gb-dm-light-orange;
|
||||
--gb-dm-light-gray: @gb-dm-light-gray;
|
||||
|
||||
|
||||
|
||||
// Light Background
|
||||
--gb-lm-bg0: @gb-lm-bg0;
|
||||
--gb-lm-bg0-hard: @gb-lm-bg0-hard;
|
||||
--gb-lm-bg0-soft: @gb-lm-bg0-soft;
|
||||
--gb-lm-bg1: @gb-lm-bg1;
|
||||
--gb-lm-bg2: @gb-lm-bg2;
|
||||
--gb-lm-bg3: @gb-lm-bg3;
|
||||
--gb-lm-bg4: @gb-lm-bg4;
|
||||
|
||||
// Light Foreground
|
||||
--gb-lm-fg0: @gb-lm-fg0;
|
||||
--gb-lm-fg1: @gb-lm-fg1;
|
||||
--gb-lm-fg2: @gb-lm-fg2;
|
||||
--gb-lm-fg3: @gb-lm-fg3;
|
||||
--gb-lm-fg4: @gb-lm-fg4;
|
||||
|
||||
// Light Colors
|
||||
--gb-lm-dark-red: @gb-lm-dark-red;
|
||||
--gb-lm-dark-green: @gb-lm-dark-green;
|
||||
--gb-lm-dark-yellow: @gb-lm-dark-yellow;
|
||||
--gb-lm-dark-blue: @gb-lm-dark-blue;
|
||||
--gb-lm-dark-purple: @gb-lm-dark-purple;
|
||||
--gb-lm-dark-aqua: @gb-lm-dark-aqua;
|
||||
--gb-lm-dark-orange: @gb-lm-dark-orange;
|
||||
--gb-lm-dark-gray: @gb-lm-dark-gray;
|
||||
|
||||
--gb-lm-light-red: @gb-lm-light-red;
|
||||
--gb-lm-light-green: @gb-lm-light-green;
|
||||
--gb-lm-light-yellow: @gb-lm-light-yellow;
|
||||
--gb-lm-light-blue: @gb-lm-light-blue;
|
||||
--gb-lm-light-purple: @gb-lm-light-purple;
|
||||
--gb-lm-light-aqua: @gb-lm-light-aqua;
|
||||
--gb-lm-light-orange: @gb-lm-light-orange;
|
||||
--gb-lm-light-gray: @gb-lm-light-gray;
|
||||
}
|
225
qutebrowser/.local/share/qutebrowser/userstylesheets/stylish.css
Normal file
225
qutebrowser/.local/share/qutebrowser/userstylesheets/stylish.css
Normal file
|
@ -0,0 +1,225 @@
|
|||
/* Base */
|
||||
*,
|
||||
::before,
|
||||
::after {
|
||||
color: #a89984 !important;
|
||||
border-color: #1d2021 !important;
|
||||
outline-color: #1d2021 !important;
|
||||
text-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
/*-moz-box-shadow: none !important;*/
|
||||
background-color: transparent !important;
|
||||
}
|
||||
html * {
|
||||
color: inherit !important;
|
||||
}
|
||||
p::first-letter,
|
||||
h1::first-letter,
|
||||
h2::first-letter,
|
||||
p::first-line {
|
||||
color: inherit !important;
|
||||
background: none !important;
|
||||
}
|
||||
/* :: Give solid BG :: */
|
||||
/* element */
|
||||
b,
|
||||
i,
|
||||
u,
|
||||
strong {
|
||||
color: #98971a;
|
||||
}
|
||||
html,
|
||||
body,
|
||||
li ul,
|
||||
ul li,
|
||||
table,
|
||||
header,
|
||||
article,
|
||||
section,
|
||||
nav,
|
||||
menu,
|
||||
aside,
|
||||
[class*="nav"],
|
||||
[class*="open"],
|
||||
[id*="ropdown"],
|
||||
[class*="ropdown"],
|
||||
div[class*="menu"],
|
||||
[class*="tooltip"],
|
||||
div[class*="popup"],
|
||||
div[id*="popup"],
|
||||
div[id*="detail"],
|
||||
div[class*="detail"],
|
||||
div[class*="note"],
|
||||
span[class*="note"],
|
||||
div[class*="description"],
|
||||
div[class*="content"],
|
||||
div[class*="container"],
|
||||
div[style*="display: block"],
|
||||
div[style*="visibility: visible"] {
|
||||
background-color: #282828 !important;
|
||||
}
|
||||
/*: No BG :*/
|
||||
*:not(:empty):not(span):not([class="html5-volume-slider html5-draggable"]):not([class="html5-player-chrome html5-stop-propagation"]),
|
||||
*::before,
|
||||
*::after,
|
||||
td:empty,
|
||||
p:empty,
|
||||
div:empty:not([role]):not([style*="flashblock"]):not([class^="html5"]):not([class*="noscriptPlaceholder"]) {
|
||||
background-image: none !important;
|
||||
}
|
||||
/*: Filter non-icons :*/
|
||||
span:not(:empty):not([class*="icon"]):not([id*="icon"]):not([class*="star"]):not([id*="star"]):not([id*="rating"]):not([class*="rating"]):not([class*="prite"]) {
|
||||
background-image: none !important;
|
||||
text-indent: 0 !important;
|
||||
}
|
||||
/*: Image opacity :*/
|
||||
img,
|
||||
svg {
|
||||
opacity: 0.75 !important;
|
||||
}
|
||||
img:hover,
|
||||
svg:hover {
|
||||
opacity: 1 !important;
|
||||
}
|
||||
/* Highlight */
|
||||
::-moz-selection {
|
||||
background-color: #ebdbb2 !important;
|
||||
color: #32302f !important;
|
||||
}
|
||||
/* ::: anchor/links ::: */
|
||||
a {
|
||||
color: #689d6a !important;
|
||||
background-color: #282828 !important;
|
||||
opacity: 1 !important;
|
||||
text-indent: 0 !important;
|
||||
}
|
||||
a:link {
|
||||
color: #458588 !important;
|
||||
}
|
||||
a:visited {
|
||||
color: #b16286 !important;
|
||||
}
|
||||
a:hover {
|
||||
color: #d79921 !important;
|
||||
background-color: #1d2021 !important;
|
||||
}
|
||||
a:active {
|
||||
color: #d65d0e !important;
|
||||
}
|
||||
/* "Top level" div */
|
||||
body > div {
|
||||
background-color: inherit !important;
|
||||
}
|
||||
/* :::::: Text Presentation :::::: */
|
||||
summary,
|
||||
details {
|
||||
background-color: inherit !important;
|
||||
}
|
||||
kbd,
|
||||
time,
|
||||
label,
|
||||
.date {
|
||||
color: #98971a !important;
|
||||
}
|
||||
acronym,
|
||||
abbr {
|
||||
border-bottom: 1px dotted !important;
|
||||
cursor: help !important;
|
||||
}
|
||||
mark {
|
||||
background-color: #cc241d !important;
|
||||
}
|
||||
/* :::::: Headings :::::: */
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
background-image: none !important;
|
||||
border-radius: 5px !important;
|
||||
/*-moz-border-radius: 5px !important;*/
|
||||
-webkit-border-radius: 5px !important;
|
||||
text-indent: 0 !important;
|
||||
}
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
background-color: #1d2021 !important;
|
||||
}
|
||||
h1,
|
||||
h2 {
|
||||
color: #98971a !important;
|
||||
}
|
||||
h3,
|
||||
h4 {
|
||||
color: #d79921 !important;
|
||||
}
|
||||
h5,
|
||||
h6 {
|
||||
color: #d65d0e !important;
|
||||
}
|
||||
/* :::::: Tables, cells :::::: */
|
||||
table table {
|
||||
background: #1d2021 !important;
|
||||
}
|
||||
th,
|
||||
caption {
|
||||
background: #282828 !important;
|
||||
}
|
||||
/* ::: Inputs, textareas ::: */
|
||||
input,
|
||||
textarea,
|
||||
button,
|
||||
select,
|
||||
option,
|
||||
optgroup {
|
||||
color: #ebdbb2 !important;
|
||||
background: none #1d2021 !important;
|
||||
-moz-appearance: none !important;
|
||||
-webkit-appearance: none !important;
|
||||
}
|
||||
input,
|
||||
textarea,
|
||||
button {
|
||||
border-color: #32302f !important;
|
||||
border-width: 1px !important;
|
||||
}
|
||||
/* :::::: Button styling :::::: */
|
||||
input[type="button"],
|
||||
input[type="submit"],
|
||||
input[type="reset"],
|
||||
button {
|
||||
background: #1d2021 !important;
|
||||
}
|
||||
input[type="button"]:hover,
|
||||
input[type="submit"]:hover,
|
||||
input[type="reset"]:hover,
|
||||
button:hover {
|
||||
color: #32302f !important;
|
||||
background: #ebdbb2 !important;
|
||||
}
|
||||
input[type="image"] {
|
||||
opacity: 0.85 !important;
|
||||
}
|
||||
input[type="image"]:hover {
|
||||
opacity: 0.95 !important;
|
||||
}
|
||||
/* Lightbox fix */
|
||||
html [id*="lightbox"] * {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
html [id*="lightbox"] img {
|
||||
opacity: 1 !important;
|
||||
}
|
||||
/* Youtube Annotation */
|
||||
#movie_player-html5 .annotation {
|
||||
background: #1d2021 !important;
|
||||
}
|
||||
/* Mozilla addons shrink/expand sections */
|
||||
.expando a {
|
||||
background: none transparent !important;
|
||||
}
|
|
@ -0,0 +1,282 @@
|
|||
|
||||
/* Base */
|
||||
*, ::before, ::after
|
||||
{
|
||||
color: #a89984 !important;
|
||||
border-color: #1d2021 !important;
|
||||
outline-color: #1d2021 !important;
|
||||
text-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
/*-moz-box-shadow: none !important;*/
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
html *
|
||||
{
|
||||
color: inherit !important;
|
||||
}
|
||||
|
||||
p::first-letter,
|
||||
h1::first-letter,
|
||||
h2::first-letter,
|
||||
p::first-line
|
||||
{
|
||||
color: inherit !important;
|
||||
background: none !important;
|
||||
}
|
||||
|
||||
/* :: Give solid BG :: */
|
||||
|
||||
/* element */
|
||||
b,i,u,strong
|
||||
{
|
||||
color: #98971a;
|
||||
}
|
||||
|
||||
html,
|
||||
body,
|
||||
li ul,
|
||||
ul li,
|
||||
table,
|
||||
header,
|
||||
article,
|
||||
section,
|
||||
nav,
|
||||
menu,
|
||||
aside,
|
||||
|
||||
/* common */
|
||||
|
||||
[class*="nav"],
|
||||
[class*="open"],
|
||||
[id*="ropdown"], /*dropdown*/
|
||||
[class*="ropdown"],
|
||||
div[class*="menu"],
|
||||
[class*="tooltip"],
|
||||
div[class*="popup"],
|
||||
div[id*="popup"],
|
||||
|
||||
/* Notes, details, etc. Maybe useful */
|
||||
div[id*="detail"],div[class*="detail"],
|
||||
div[class*="note"], span[class*="note"],
|
||||
div[class*="description"],
|
||||
|
||||
/* Also common */
|
||||
div[class*="content"], div[class*="container"],
|
||||
|
||||
/* Popup divs that use visibility: hidden and display: none */
|
||||
div[style*="display: block"],
|
||||
div[style*="visibility: visible"]
|
||||
{
|
||||
background-color: #282828 !important;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*: No BG :*/
|
||||
*:not(:empty):not(span):not([class="html5-volume-slider html5-draggable"]):not([class="html5-player-chrome html5-stop-propagation"]), *::before, *::after,
|
||||
td:empty, p:empty, div:empty:not([role]):not([style*="flashblock"]):not([class^="html5"]):not([class*="noscriptPlaceholder"])
|
||||
{
|
||||
background-image: none !important;
|
||||
}
|
||||
|
||||
/*: Filter non-icons :*/
|
||||
span:not(:empty):not([class*="icon"]):not([id*="icon"]):not([class*="star"]):not([id*="star"]):not([id*="rating"]):not([class*="rating"]):not([class*="prite"])
|
||||
{
|
||||
background-image: none !important;
|
||||
text-indent: 0 !important;
|
||||
}
|
||||
|
||||
/*: Image opacity :*/
|
||||
img, svg
|
||||
{
|
||||
opacity: .75 !important;
|
||||
}
|
||||
|
||||
img:hover, svg:hover
|
||||
{
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
/* Highlight */
|
||||
::-moz-selection
|
||||
{
|
||||
background-color: #ebdbb2 !important;
|
||||
color: #32302f !important;
|
||||
}
|
||||
|
||||
/* ::: anchor/links ::: */
|
||||
|
||||
a
|
||||
{
|
||||
color: #689d6a !important;
|
||||
background-color: #282828 !important;
|
||||
opacity: 1 !important;
|
||||
text-indent: 0 !important;
|
||||
}
|
||||
|
||||
a:link
|
||||
{
|
||||
color: #458588 !important;
|
||||
}
|
||||
|
||||
a:visited
|
||||
{
|
||||
color: #b16286 !important;
|
||||
}
|
||||
|
||||
a:hover
|
||||
{
|
||||
color: #d79921 !important;
|
||||
background-color: #1d2021 !important;
|
||||
}
|
||||
|
||||
a:active
|
||||
{
|
||||
color: #d65d0e !important;
|
||||
}
|
||||
|
||||
/* "Top level" div */
|
||||
|
||||
body > div
|
||||
{
|
||||
background-color: inherit !important;
|
||||
}
|
||||
|
||||
/* :::::: Text Presentation :::::: */
|
||||
|
||||
summary, details
|
||||
{
|
||||
background-color: inherit !important;
|
||||
}
|
||||
|
||||
kbd, time, label, .date
|
||||
{
|
||||
color: #98971a !important;
|
||||
}
|
||||
|
||||
acronym, abbr
|
||||
{
|
||||
border-bottom: 1px dotted !important;
|
||||
cursor: help !important;
|
||||
}
|
||||
|
||||
mark
|
||||
{
|
||||
background-color: #cc241d !important;
|
||||
}
|
||||
|
||||
|
||||
/* :::::: Headings :::::: */
|
||||
|
||||
h1,h2,h3,h4,h5,h6
|
||||
{
|
||||
background-image: none !important;
|
||||
border-radius: 5px !important;
|
||||
/*-moz-border-radius: 5px !important;*/
|
||||
-webkit-border-radius: 5px !important;
|
||||
text-indent: 0 !important;
|
||||
}
|
||||
|
||||
h1,h2,h3,h4,h5,h6
|
||||
{
|
||||
background-color: #1d2021 !important;
|
||||
}
|
||||
|
||||
h1,h2
|
||||
{
|
||||
color: #98971a!important;
|
||||
}
|
||||
|
||||
h3,h4
|
||||
{
|
||||
color: #d79921!important;
|
||||
}
|
||||
|
||||
h5,h6
|
||||
{
|
||||
color: #d65d0e!important;
|
||||
}
|
||||
|
||||
/* :::::: Tables, cells :::::: */
|
||||
|
||||
table table
|
||||
{
|
||||
background: #1d2021 !important;
|
||||
}
|
||||
|
||||
th, caption
|
||||
{
|
||||
background: #282828 !important;
|
||||
}
|
||||
|
||||
/* ::: Inputs, textareas ::: */
|
||||
|
||||
input, textarea, button,
|
||||
select,option,optgroup
|
||||
{
|
||||
color: #ebdbb2 !important;
|
||||
background: none #1d2021 !important;
|
||||
-moz-appearance: none !important;
|
||||
-webkit-appearance: none !important;
|
||||
}
|
||||
|
||||
input,
|
||||
textarea,
|
||||
button
|
||||
{
|
||||
border-color: #32302f !important;
|
||||
border-width: 1px !important;
|
||||
}
|
||||
|
||||
/* :::::: Button styling :::::: */
|
||||
|
||||
input[type="button"],
|
||||
input[type="submit"],
|
||||
input[type="reset"],
|
||||
button
|
||||
{
|
||||
background: #1d2021 !important;
|
||||
}
|
||||
|
||||
input[type="button"]:hover,
|
||||
input[type="submit"]:hover,
|
||||
input[type="reset"]:hover,
|
||||
button:hover
|
||||
{
|
||||
color: #32302f !important;
|
||||
background: #ebdbb2 !important;
|
||||
}
|
||||
|
||||
input[type="image"]
|
||||
{
|
||||
opacity: .85 !important;
|
||||
}
|
||||
|
||||
input[type="image"]:hover
|
||||
{
|
||||
opacity: .95 !important;
|
||||
}
|
||||
|
||||
/* Lightbox fix */
|
||||
html [id*="lightbox"] *
|
||||
{
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
html [id*="lightbox"] img
|
||||
{
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
/* Youtube Annotation */
|
||||
#movie_player-html5 .annotation
|
||||
{
|
||||
background: #1d2021 !important;
|
||||
}
|
||||
|
||||
/* Mozilla addons shrink/expand sections */
|
||||
.expando a
|
||||
{
|
||||
background: none transparent !important;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue