mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-18 15:54:50 +00:00
f30a7cc61d
We're going to build a custom version
17 lines
371 B
Plaintext
Executable File
17 lines
371 B
Plaintext
Executable File
//
|
|
// Layouts
|
|
// Fixed-width and fluid (with sidebar) layouts
|
|
// --------------------------------------------
|
|
|
|
|
|
// Container (centered, fixed-width layouts)
|
|
.container {
|
|
.container-fixed();
|
|
}
|
|
|
|
// Fluid layouts (left aligned, with sidebar, min- & max-width content)
|
|
.container-fluid {
|
|
padding-right: @gridGutterWidth;
|
|
padding-left: @gridGutterWidth;
|
|
.clearfix();
|
|
} |