2012-06-28 21:46:45 -07:00
|
|
|
//
|
|
|
|
// Utility classes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-01-08 15:38:57 -08:00
|
|
|
|
2012-12-10 10:25:18 -08:00
|
|
|
// IE10 Metro responsive
|
|
|
|
// Required for Windows 8 Metro split-screen snapping with IE10
|
|
|
|
// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
|
|
|
|
@-ms-viewport{
|
|
|
|
width: device-width;
|
|
|
|
}
|
|
|
|
|
2012-01-08 15:38:57 -08:00
|
|
|
// Quick floats
|
|
|
|
.pull-right {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.pull-left {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Toggling content
|
|
|
|
.hide {
|
2012-07-24 00:35:54 -07:00
|
|
|
display: none;
|
2012-01-08 15:38:57 -08:00
|
|
|
}
|
|
|
|
.show {
|
2012-07-24 00:35:54 -07:00
|
|
|
display: block;
|
2012-01-08 15:38:57 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Visibility
|
|
|
|
.invisible {
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
2012-07-22 18:28:39 -07:00
|
|
|
|
2012-08-19 21:12:52 -07:00
|
|
|
// For Affix plugin
|
2012-07-22 18:28:39 -07:00
|
|
|
.affix {
|
|
|
|
position: fixed;
|
2012-08-19 21:12:52 -07:00
|
|
|
}
|