2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Utility classes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-09 00:38:57 +01:00
|
|
|
|
|
|
|
// Quick floats
|
|
|
|
.pull-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.pull-left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Toggling content
|
2012-07-13 23:43:51 +02:00
|
|
|
// Uses `!important` for proper specifity over things like form controls
|
2012-01-09 00:38:57 +01:00
|
|
|
.hide {
|
2012-07-13 23:43:51 +02:00
|
|
|
display: none !important;
|
2012-01-09 00:38:57 +01:00
|
|
|
}
|
|
|
|
.show {
|
2012-07-13 23:43:51 +02:00
|
|
|
display: block !important;
|
2012-01-09 00:38:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Visibility
|
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|