2012-06-29 04:46:45 +00:00
|
|
|
//
|
|
|
|
|
// Utility classes
|
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
2012-01-08 23:38:57 +00:00
|
|
|
|
2012-12-10 18:25:18 +00: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 23:38:57 +00:00
|
|
|
// Quick floats
|
|
|
|
|
.pull-right {
|
|
|
|
|
float: right;
|
|
|
|
|
}
|
|
|
|
|
.pull-left {
|
|
|
|
|
float: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Toggling content
|
|
|
|
|
.hide {
|
2012-07-24 07:35:54 +00:00
|
|
|
display: none;
|
2012-01-08 23:38:57 +00:00
|
|
|
}
|
|
|
|
|
.show {
|
2012-07-24 07:35:54 +00:00
|
|
|
display: block;
|
2012-01-08 23:38:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Visibility
|
|
|
|
|
.invisible {
|
|
|
|
|
visibility: hidden;
|
|
|
|
|
}
|
2012-07-23 01:28:39 +00:00
|
|
|
|
2012-08-20 04:12:52 +00:00
|
|
|
// For Affix plugin
|
2012-07-23 01:28:39 +00:00
|
|
|
.affix {
|
|
|
|
|
position: fixed;
|
2012-08-20 04:12:52 +00:00
|
|
|
}
|