mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-04-21 03:04:38 +10:00
Adding new qutebrowser configs
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
// * index.styl
|
||||
|
||||
// Included in every sheet
|
||||
|
||||
@require "sites/generic"
|
||||
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
// * mixins.styl
|
||||
|
||||
// Mixins for use in all sheets
|
||||
|
||||
i = !important
|
||||
|
||||
a(c = color-a)
|
||||
if c is "visited"
|
||||
c = color-a-visited
|
||||
color c i
|
||||
|
||||
background-color(c = color-background)
|
||||
if c is "highlight"
|
||||
c = color-background-highlight
|
||||
if c is "highlight-extra"
|
||||
c = color-background-highlight-extra
|
||||
background-color c i
|
||||
|
||||
bold()
|
||||
font-weight bold i
|
||||
|
||||
border-color(args...)
|
||||
if args
|
||||
c = args
|
||||
else
|
||||
c = color-border
|
||||
border-color c i
|
||||
|
||||
color(c = color-text)
|
||||
color c i
|
||||
Reference in New Issue
Block a user