44 lines
567 B
SCSS
44 lines
567 B
SCSS
.flip-x {
|
|
transform: scaleX(-1);
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
/**
|
|
* Hides an element.
|
|
*/
|
|
.hide {
|
|
display: none !important;
|
|
}
|
|
|
|
.invisible {
|
|
visibility: hidden;
|
|
}
|
|
|
|
/**
|
|
* Shows an element.
|
|
*/
|
|
.show {
|
|
display: block !important;
|
|
}
|
|
|
|
/**
|
|
* Shows an inline element.
|
|
*/
|
|
.show-inline {
|
|
display: inline-block !important;
|
|
}
|
|
|
|
/**
|
|
* Shows a flex element.
|
|
*/
|
|
.show-flex {
|
|
display: -webkit-box !important;
|
|
display: -moz-box !important;
|
|
display: -ms-flexbox !important;
|
|
display: -webkit-flex !important;
|
|
display: flex !important;
|
|
}
|