Buttons are round and shadowed to make them clearer

This commit is contained in:
Christoph Haas 2021-03-10 00:31:48 +01:00
parent b08ba855e9
commit 27a1811153
2 changed files with 7 additions and 1 deletions

View file

@ -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,

View file

@ -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);
}