mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-28 12:24:23 +00:00
32 lines
1.1 KiB
Sass
32 lines
1.1 KiB
Sass
$box-color: var(--text, #{$text}) !default
|
|
$box-background-color: var(--scheme-main, #{$scheme-main}) !default
|
|
$box-radius: var(--radius-large, #{$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
|
|
--box-background-color: #{$box-background-color}
|
|
--box-radius: #{$box-radius}
|
|
--box-shadow: #{$box-shadow}
|
|
--box-color: #{$box-color}
|
|
--box-padding: #{$box-padding}
|
|
--box-link-hover-shadow: #{$box-link-hover-shadow}
|
|
--box-link-active-shadow: #{$box-link-active-shadow}
|
|
@extend %block
|
|
background-color: var(--box-background-color)
|
|
border-radius: var(--box-radius)
|
|
box-shadow: var(--box-shadow)
|
|
color: var(--box-color)
|
|
display: block
|
|
padding: var(--box-padding)
|
|
|
|
a.box
|
|
&:hover,
|
|
&:focus
|
|
box-shadow: var(--box-link-hover-shadow)
|
|
&:active
|
|
box-shadow: var(--box-link-active-shadow)
|