2012-06-29 06:46:45 +02:00
|
|
|
//
|
|
|
|
// Utility classes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-09 00:38:57 +01:00
|
|
|
|
2012-09-26 17:59:57 +02:00
|
|
|
// Floats
|
|
|
|
// -------------------------
|
|
|
|
|
2012-12-20 02:49:20 +01:00
|
|
|
.clearfix {
|
|
|
|
.clear_float();
|
2012-09-26 17:59:57 +02:00
|
|
|
}
|
2012-01-09 00:38:57 +01:00
|
|
|
.pull-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.pull-left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
2012-09-26 17:59:57 +02:00
|
|
|
|
2012-01-09 00:38:57 +01:00
|
|
|
// Toggling content
|
2012-09-26 17:59:57 +02:00
|
|
|
// -------------------------
|
|
|
|
|
2012-01-09 00:38:57 +01:00
|
|
|
.hide {
|
2012-12-20 22:53:38 +01:00
|
|
|
display: none !important;
|
2012-01-09 00:38:57 +01:00
|
|
|
}
|
|
|
|
.show {
|
2012-12-20 22:53:38 +01:00
|
|
|
display: block !important;
|
2012-01-09 00:38:57 +01:00
|
|
|
}
|
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2012-09-26 17:59:57 +02:00
|
|
|
.text-hide {
|
|
|
|
.hide-text();
|
|
|
|
}
|
|
|
|
|
2012-07-23 03:28:39 +02:00
|
|
|
|
2012-08-20 06:12:52 +02:00
|
|
|
// For Affix plugin
|
2012-09-26 17:59:57 +02:00
|
|
|
// -------------------------
|
|
|
|
|
2012-07-23 03:28:39 +02:00
|
|
|
.affix {
|
|
|
|
position: fixed;
|
2012-08-20 06:12:52 +02:00
|
|
|
}
|