mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-05-30 15:24:08 +03:00
c3b0870ec0
- Drops all the `.make-**-column` mixins for a single set to be used within (or outside) media queries. - Renames `.container-fixed` to `.make-container` for consistency. - Updates built-in grid system to use new setup. See http://jsbin.com/qiqet/2/ for an example of it in action.
41 lines
950 B
Plaintext
41 lines
950 B
Plaintext
/// Grid system
|
|
//
|
|
// Generate semantic grid columns with these mixins.
|
|
|
|
// Centered container element
|
|
.make-container(@gutter: @grid-gutter-width) {
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
padding-left: (@gutter / 2);
|
|
padding-right: (@gutter / 2);
|
|
&:extend(.clearfix all);
|
|
}
|
|
|
|
// Creates a wrapper for a series of columns
|
|
.make-row(@gutter: @grid-gutter-width) {
|
|
margin-left: (@gutter / -2);
|
|
margin-right: (@gutter / -2);
|
|
&:extend(.clearfix all);
|
|
}
|
|
|
|
.make-col(@gutter: @grid-gutter-width) {
|
|
position: relative;
|
|
float: left;
|
|
min-height: 1px;
|
|
padding-left: (@gutter / 2);
|
|
padding-right: (@gutter / 2);
|
|
}
|
|
|
|
.make-col-span(@columns) {
|
|
width: percentage((@columns / @grid-columns));
|
|
}
|
|
.make-col-offset(@columns) {
|
|
margin-left: percentage((@columns / @grid-columns));
|
|
}
|
|
.make-col-push(@columns) {
|
|
left: percentage((@columns / @grid-columns));
|
|
}
|
|
.make-col-pull(@columns) {
|
|
right: percentage((@columns / @grid-columns));
|
|
}
|