Minor changes

This commit is contained in:
Eduard Urbach 2017-11-04 22:50:05 +01:00
parent 7d748d0368
commit ce03cadc98
3 changed files with 20 additions and 13 deletions

View File

@ -98,17 +98,14 @@ post-content-padding-y = 0.75rem
&:before &:before
content "+" content "+"
.post-permalink // .post-permalink
color blue !important // color post-permalink-color !important
.post-delete // .post-like
color rgb(255, 32, 12) !important // color post-like-color !important
.post-like // .post-unlike
color green !important // color post-unlike-color !important
.post-unlike
color rgb(255, 32, 12) !important
.post-save .post-save
// //

View File

@ -53,6 +53,11 @@ nav-link-hover-slide-color = main-color
// nav-link-color = rgb(160, 160, 160) // nav-link-color = rgb(160, 160, 160)
// nav-link-hover-color = rgb(80, 80, 80) // nav-link-hover-color = rgb(80, 80, 80)
// Forum
post-like-color = green
post-unlike-color = rgb(255, 32, 12)
post-permalink-color = blue
// Tables // Tables
table-width-normal = 900px table-width-normal = 900px

View File

@ -4,18 +4,18 @@
hue = 45 hue = 45
saturation = 100% saturation = 100%
// Derived colors // Main
text-color = hsl(0, 0%, 90%) text-color = hsl(0, 0%, 90%)
bg-color = hsl(0, 0%, 24%) bg-color = hsl(0, 0%, 24%)
link-color = hsl(hue, saturation, 66%) link-color = hsl(hue, saturation, 66%)
link-hover-color = hsl(hue, saturation, 76%) link-hover-color = hsl(hue, saturation, 76%)
link-hover-text-shadow = 0 0 8px hsla(hue, saturation, 66%, 0.5)
ui-background = hsla(0, 0%, 8%, 0.3) ui-background = hsla(0, 0%, 8%, 0.3)
// White/black
theme-white = bg-color theme-white = bg-color
theme-black = text-color theme-black = text-color
link-hover-text-shadow = 0 0 8px hsla(hue, saturation, 66%, 0.5)
main-color = link-color main-color = link-color
link-active-color = link-hover-color link-active-color = link-hover-color
button-hover-color = link-hover-color button-hover-color = link-hover-color
@ -25,4 +25,9 @@ tab-hover-background = hsla(0, 0%, 0%, 0.2)
tab-active-color = hsl(0, 0%, 95%) tab-active-color = hsl(0, 0%, 95%)
tab-active-background = hsla(0, 0%, 2%, 0.5) tab-active-background = hsla(0, 0%, 2%, 0.5)
loading-anim-color = link-color loading-anim-color = link-color
anime-alternative-title-color = hsla(0, 0%, 100%, 0.5) anime-alternative-title-color = hsla(0, 0%, 100%, 0.5)
// Forum
post-like-color = green
post-unlike-color = rgb(255, 32, 12)
post-permalink-color = blue