From 7e6d054e980b2f2d0798cb449bc9c62abef7b8fd Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Sat, 26 Nov 2016 00:10:27 +0100 Subject: [PATCH] scss: Fix a few CSS problems (#73) * Set text color on body * Fix not being able to scroll more then sidebar height in Firefox * Fix button color being set by browser stylesheet instead of site stylesheet --- scss/main.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scss/main.scss b/scss/main.scss index 68cc4eb..34fd594 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -71,6 +71,7 @@ body { padding: 0; font-family: 'Roboto Slab', serif; font-size: 11pt; + color: #333; } th.sort-header::selection { @@ -219,6 +220,7 @@ button { @include shadow(1); border-radius: 0.9em; background: rgba(255, 255, 255, 0.7); + color: #333; border: none; cursor: pointer; height: 1.8em; @@ -361,7 +363,7 @@ table { position: absolute; top: $buttondistance; left: $buttondistance; - margin-bottom: $buttondistance; + padding-bottom: $buttondistance; transition: left 0.5s; }