bulma and fontawesome instaled
[josuexyz/.git] / node_modules / bulma / sass / elements / box.sass
1 $box-color: $text !default
2 $box-background-color: $scheme-main !default
3 $box-radius: $radius-large !default
4 $box-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0px 0 1px rgba($scheme-invert, 0.02) !default
5 $box-padding: 1.25rem !default
6
7 $box-link-hover-shadow: 0 0.5em 1em -0.125em rgba($scheme-invert, 0.1), 0 0 0 1px $link !default
8 $box-link-active-shadow: inset 0 1px 2px rgba($scheme-invert, 0.2), 0 0 0 1px $link !default
9
10 .box
11   @extend %block
12   background-color: $box-background-color
13   border-radius: $box-radius
14   box-shadow: $box-shadow
15   color: $box-color
16   display: block
17   padding: $box-padding
18
19 a.box
20   &:hover,
21   &:focus
22     box-shadow: $box-link-hover-shadow
23   &:active
24     box-shadow: $box-link-active-shadow