hugo-theme-introduction/assets/vendor/bulma/sass/grid/tiles.sass

35 lines
777 B
Sass
Raw Normal View History

$tile-spacing: 0.75rem !default
2018-07-10 07:23:19 +00:00
.tile
align-items: stretch
display: block
flex-basis: 0
flex-grow: 1
flex-shrink: 1
min-height: min-content
// Modifiers
&.is-ancestor
margin-left: $tile-spacing * -1
margin-right: $tile-spacing * -1
margin-top: $tile-spacing * -1
2018-07-10 07:23:19 +00:00
&:last-child
margin-bottom: $tile-spacing * -1
2018-07-10 07:23:19 +00:00
&:not(:last-child)
margin-bottom: $tile-spacing
2018-07-10 07:23:19 +00:00
&.is-child
margin: 0 !important
&.is-parent
padding: $tile-spacing
2018-07-10 07:23:19 +00:00
&.is-vertical
flex-direction: column
& > .tile.is-child:not(:last-child)
margin-bottom: 1.5rem !important
// Responsiveness
+tablet
&:not(.is-child)
display: flex
@for $i from 1 through 12
&.is-#{$i}
flex: none
width: ($i / 12) * 100%