roots-actions.php: added responsive css framework file roots-options.php: changed default css classes for bootstrap v2.0.0 roots-scripts.php: updated less to v1.2.1, changed the load order and added new scripts for bootstrap v2.0.0 Added all of the new css, js, less asset files and updated all of the previous ones for bootstrap v2.0.0
24 lines
245 B
Plaintext
24 lines
245 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;
|
|
}
|