mirror of
https://github.com/jgthms/bulma
synced 2026-03-18 11:24:29 -07:00
68 lines
709 B
Sass
68 lines
709 B
Sass
// Alignment
|
|
|
|
.is-centered
|
|
text-align: center
|
|
|
|
.is-left
|
|
text-align: left
|
|
|
|
.is-right
|
|
text-align: right
|
|
|
|
// Display
|
|
|
|
.is-block
|
|
display: block
|
|
|
|
.is-inline
|
|
display: inline
|
|
|
|
.is-flex
|
|
display: flex
|
|
|
|
// Pull
|
|
|
|
.is-clearfix
|
|
+clearfix
|
|
|
|
.is-pulled-left
|
|
float: left
|
|
|
|
.is-pulled-right
|
|
float: right
|
|
|
|
// Size
|
|
|
|
.is-fullwidth
|
|
width: 100%
|
|
|
|
// Visibility
|
|
|
|
.is-hidden-mobile
|
|
+mobile
|
|
display: none !important
|
|
|
|
.is-hidden-tablet
|
|
+tablet
|
|
display: none !important
|
|
|
|
.is-hidden-touch
|
|
+touch
|
|
display: none !important
|
|
|
|
.is-hidden-desktop
|
|
+desktop
|
|
display: none !important
|
|
|
|
// Other
|
|
|
|
.is-disabled
|
|
pointer-events: none
|
|
|
|
.is-marginless
|
|
margin: 0 !important
|
|
|
|
.is-unselectable
|
|
+unselectable
|
|
|