diff options
| author | Robert Günzler <r@gnzler.io> | 2020-01-26 17:16:07 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2020-01-26 18:00:59 +0100 |
| commit | f5d56602df70950de6b7d40966b00c9939c81763 (patch) | |
| tree | b50ffeb5496fe3525cc1bab2629389ced95435b7 /.config/tridactyl/themes/r.css | |
Intial commit of v2
See https://drewdevault.com/2019/12/30/dotfiles.html
Diffstat (limited to '.config/tridactyl/themes/r.css')
| -rw-r--r-- | .config/tridactyl/themes/r.css | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/.config/tridactyl/themes/r.css b/.config/tridactyl/themes/r.css new file mode 100644 index 0000000..9017468 --- /dev/null +++ b/.config/tridactyl/themes/r.css @@ -0,0 +1,59 @@ +:root.TridactylThemeR { + --tridactyl-bg: #1c1c1c; + --tridactyl-bg-second: #38383d; + --tridactyl-fg: #f9f9fa; + --tridactyl-of-bg: #005CAF; + /* --tridactyl-of-fg: ; */ + /* --tridactyl-hightlight-box-bg: ; */ + /* --tridactyl-hightlight-box-fg: ; */ + --tridactyl-font-family: "Iosevka Sparkle", monospace; + --tridactyl-font-family-sans: sans-serif; + --tridactyl-font-size: 12pt !important; + --tridactyl-small-font-size: 12pt; + --tridactyl-cmdl-bg: #1c1c1c; + --tridactyl-cmdl-small-font-size: 12pt; + --tridactyl-cmplt-bg: #1c1c1c; + --tridactyl-cmplt-small-font-size: 12pt; +} + +/* :root.TridactylThemeR body { */ +/* } */ + +:root.TridactylThemeR #command-line-holder { + order: 1; +} + +:root.TridactylThemeR #completions { + order: 2; + border-top: 1px solid var(--tridactyl-complt-bg); +} + +:root.TridactylThemeR #completions .sectionHeader { + display: none; +} + +/* :root.TridactylThemeR #tridactyl-colon { */ +/* margin-left: 2px; */ +/* } */ +:root.TridactylThemeR #tridactyl-colon::before { + content: " > "; +} + +/* :root.TridactylThemeR #completions .focused, */ +/* :root.TridactylThemeR #completions .focused .url { */ +/* background: var(--tridactyl-bg-second); */ +/* text-decoration: italic; */ +/* } */ + +:root.TridactylThemeR #cmdline_iframe { + position: fixed !important; + bottom: unset; + top: -1px !important; + left: 0% !important; + box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 15px !important; + /* opacity: 0.9; */ +} + +/* :root.TridactylThemeR #changelog { */ +/* background: var(--tridactyl-bg-second); */ +/* } */ |