123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- // Float
- .is-clearfix
- +clearfix
- .is-pulled-left
- float: left !important
- .is-pulled-right
- float: right !important
- // Overflow
- .is-clipped
- overflow: hidden !important
- // Overlay
- .is-overlay
- +overlay
- // Typography
- @each $size in $sizes
- $i: index($sizes, $size)
- .is-size-#{$i}
- font-size: $size !important
- +mobile
- .is-size-#{$i}-mobile
- font-size: $size !important
- +tablet
- .is-size-#{$i}-tablet
- font-size: $size !important
- +touch
- .is-size-#{$i}-touch
- font-size: $size !important
- +desktop
- .is-size-#{$i}-desktop
- font-size: $size !important
- +widescreen
- .is-size-#{$i}-widescreen
- font-size: $size !important
- +fullhd
- .is-size-#{$i}-fullhd
- font-size: $size !important
- $alignments: ('centered': 'center', 'left': 'left', 'right': 'right')
- @each $alignment, $text-align in $alignments
- .has-text-#{$alignment}
- text-align: #{$text-align} !important
- +mobile
- .has-text-#{$alignment}-mobile
- text-align: #{$text-align} !important
- +tablet
- .has-text-#{$alignment}-tablet
- text-align: #{$text-align} !important
- +tablet-only
- .has-text-#{$alignment}-tablet-only
- text-align: #{$text-align} !important
- +touch
- .has-text-#{$alignment}-touch
- text-align: #{$text-align} !important
- +desktop
- .has-text-#{$alignment}-desktop
- text-align: #{$text-align} !important
- +desktop-only
- .has-text-#{$alignment}-desktop-only
- text-align: #{$text-align} !important
- +widescreen
- .has-text-#{$alignment}-widescreen
- text-align: #{$text-align} !important
- +widescreen-only
- .has-text-#{$alignment}-widescreen-only
- text-align: #{$text-align} !important
- +fullhd
- .has-text-#{$alignment}-fullhd
- text-align: #{$text-align} !important
- .is-capitalized
- text-transform: capitalize !important
- .is-lowercase
- text-transform: lowercase !important
- .is-uppercase
- text-transform: uppercase !important
- @each $name, $pair in $colors
- $color: nth($pair, 1)
- .has-text-#{$name}
- color: $color !important
- a.has-text-#{$name}
- &:hover,
- &:focus
- color: darken($color, 10%)
- @each $name, $shade in $shades
- .has-text-#{$name}
- color: $shade !important
- // Visibility
- $displays: 'block' 'flex' 'inline' 'inline-block' 'inline-flex'
- @each $display in $displays
- .is-#{$display}
- display: #{$display}
- +mobile
- .is-#{$display}-mobile
- display: #{$display} !important
- +tablet
- .is-#{$display}-tablet
- display: #{$display} !important
- +tablet-only
- .is-#{$display}-tablet-only
- display: #{$display} !important
- +touch
- .is-#{$display}-touch
- display: #{$display} !important
- +desktop
- .is-#{$display}-desktop
- display: #{$display} !important
- +desktop-only
- .is-#{$display}-desktop-only
- display: #{$display} !important
- +widescreen
- .is-#{$display}-widescreen
- display: #{$display} !important
- +widescreen-only
- .is-#{$display}-widescreen-only
- display: #{$display} !important
- +fullhd
- .is-#{$display}-fullhd
- display: #{$display} !important
- .is-hidden
- display: none !important
- +mobile
- .is-hidden-mobile
- display: none !important
- +tablet
- .is-hidden-tablet
- display: none !important
- +tablet-only
- .is-hidden-tablet-only
- display: none !important
- +touch
- .is-hidden-touch
- display: none !important
- +desktop
- .is-hidden-desktop
- display: none !important
- +desktop-only
- .is-hidden-desktop-only
- display: none !important
- +widescreen
- .is-hidden-widescreen
- display: none !important
- +widescreen-only
- .is-hidden-widescreen-only
- display: none !important
- +fullhd
- .is-hidden-fullhd
- display: none !important
- // Other
- .is-marginless
- margin: 0 !important
- .is-paddingless
- padding: 0 !important
- .is-radiusless
- border-radius: 0 !important
- .is-shadowless
- box-shadow: none !important
- .is-unselectable
- +unselectable
|