mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 18:39:57 +00:00
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;
|
||
|
}
|