From 27a181115324e118d26e9f66e05cbb4b40532819 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Wed, 10 Mar 2021 00:31:48 +0100 Subject: [PATCH] Buttons are round and shadowed to make them clearer --- app/assets/stylesheets/_settings.scss | 3 ++- app/assets/stylesheets/my_styles.scss | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/_settings.scss b/app/assets/stylesheets/_settings.scss index 22d189b..3b800ff 100644 --- a/app/assets/stylesheets/_settings.scss +++ b/app/assets/stylesheets/_settings.scss @@ -289,7 +289,8 @@ $button-background: $primary-color; $button-background-hover: scale-color($button-background, $lightness: -15%); $button-color: $white; $button-color-alt: $black; -$button-radius: $global-radius; +//$button-radius: $global-radius; +$button-radius: 0.5rem; $button-hollow-border-width: 1px; $button-sizes: ( tiny: 0.6rem, diff --git a/app/assets/stylesheets/my_styles.scss b/app/assets/stylesheets/my_styles.scss index 1e183a6..973d2b9 100644 --- a/app/assets/stylesheets/my_styles.scss +++ b/app/assets/stylesheets/my_styles.scss @@ -599,6 +599,11 @@ a.black ); } +// Highlight a certain screenshot if ?highlight=… is given .pkgcard.highlight { border: 5px solid red; +} + +.button { + box-shadow: 0.1rem 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.5); } \ No newline at end of file