aboutsummaryrefslogtreecommitdiff
path: root/app/scss
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2020-01-20 20:56:56 +0000
committerrubenwardy <rw@rubenwardy.com>2020-01-20 20:56:56 +0000
commit980023a80c9055f0102c2308cd1d1d7238deb69e (patch)
tree49bc2350b5a8f0944eff04d707865d8f10f3cf6a /app/scss
parentb68a1d7ab9da9e2a096d6c6c4bf9363d680db9e6 (diff)
downloadcheatdb-980023a80c9055f0102c2308cd1d1d7238deb69e.tar.xz
Improve package buttons contrast
Diffstat (limited to 'app/scss')
-rw-r--r--app/scss/custom.scss16
1 files changed, 13 insertions, 3 deletions
diff --git a/app/scss/custom.scss b/app/scss/custom.scss
index e25aaf6..419edb0 100644
--- a/app/scss/custom.scss
+++ b/app/scss/custom.scss
@@ -37,9 +37,19 @@
background-position: center;
.btn-outline-secondary {
- color: #eee;
- border-color: #666;
- background: rgba(102, 102, 102, 0.3);
+ color: rgba(255, 255, 255, 0.8);
+ border-color: rgba(0, 0, 0, 0.6);
+ background: rgba(0, 0, 0, 0.3);
+ }
+
+ .btn-outline-secondary:hover {
+ color: #fff;
+ border-color: rgba(0, 0, 0, 0.8);
+ background: rgba(0, 0, 0, 0.6);
+ }
+
+ .text-secondary {
+ color: rgba(255, 255, 255, 0.8) !important;
}
}