mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
31 lines
335 B
Plaintext
31 lines
335 B
Plaintext
|
//
|
||
|
// Utility classes
|
||
|
// --------------------------------------------------
|
||
|
|
||
|
|
||
|
// 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;
|
||
|
}
|