mirror of
https://github.com/deps-rs/deps.rs.git
synced 2024-11-22 18:36:30 +00:00
3f74371333
* Upgrade bulma to 0.7.5 * Upgrade bulma to 0.8.2 * Upgrade bulma to 0.9.2 * Reduce features * Remove ';' from sass
26 lines
769 B
Sass
26 lines
769 B
Sass
@import "../utilities/mixins"
|
|
|
|
$box-color: $text !default
|
|
$box-background-color: $scheme-main !default
|
|
$box-radius: $radius-large !default
|
|
$box-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default
|
|
$box-padding: 1.25rem !default
|
|
|
|
$box-link-hover-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0 0 1px $link !default
|
|
$box-link-active-shadow: inset 0 1px 2px rgba($scheme-invert, 0.2), 0 0 0 1px $link !default
|
|
|
|
.box
|
|
@extend %block
|
|
background-color: $box-background-color
|
|
border-radius: $box-radius
|
|
box-shadow: $box-shadow
|
|
color: $box-color
|
|
display: block
|
|
padding: $box-padding
|
|
|
|
a.box
|
|
&:hover,
|
|
&:focus
|
|
box-shadow: $box-link-hover-shadow
|
|
&:active
|
|
box-shadow: $box-link-active-shadow
|