mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-10 22:24:19 +01:00
38 lines
543 B
Plaintext
38 lines
543 B
Plaintext
//
|
|
// Utility classes
|
|
// --------------------------------------------------
|
|
|
|
|
|
// 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;
|
|
}
|
|
|
|
// Quick floats
|
|
.pull-right {
|
|
float: right;
|
|
}
|
|
.pull-left {
|
|
float: left;
|
|
}
|
|
|
|
// Toggling content
|
|
.hide {
|
|
display: none;
|
|
}
|
|
.show {
|
|
display: block;
|
|
}
|
|
|
|
// Visibility
|
|
.invisible {
|
|
visibility: hidden;
|
|
}
|
|
|
|
// For Affix plugin
|
|
.affix {
|
|
position: fixed;
|
|
}
|