You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
613 B
Plaintext
39 lines
613 B
Plaintext
@import 'variables.less';
|
|
|
|
// Three-column layout
|
|
|
|
#mw-content-block {
|
|
.flex-display;
|
|
clear: both;
|
|
}
|
|
|
|
#p-logo-text {
|
|
min-width: @column-left-size;
|
|
}
|
|
|
|
#mw-site-navigation {
|
|
.column-left();
|
|
.flex(0, 0, @column-left-size, 1);
|
|
}
|
|
|
|
#mw-content-wrapper {
|
|
.flex(1, 1, auto, 2);
|
|
// Make word wrapping, max-width percentages, etc work with the above flex
|
|
min-width: 50%;
|
|
}
|
|
|
|
#mw-related-navigation {
|
|
.column-right();
|
|
.flex(0, 0, @column-right-size, 3);
|
|
}
|
|
|
|
// Redundant content category list
|
|
#catlinks {
|
|
display: none;
|
|
}
|
|
|
|
// For the more responsive username support
|
|
#user-tools {
|
|
min-width: @column-right-size;
|
|
}
|