2018-02-13 00:29:29 +00:00
|
|
|
.flip-x {
|
|
|
|
transform: scaleX(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-11-09 16:46:58 +00:00
|
|
|
/**
|
|
|
|
* Hides an element.
|
|
|
|
*/
|
|
|
|
.hide {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
|
2018-02-13 00:29:29 +00:00
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2016-11-09 16:46:58 +00:00
|
|
|
/**
|
|
|
|
* 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;
|
2017-11-28 02:29:00 +00:00
|
|
|
}
|