aboutsummaryrefslogtreecommitdiff
path: root/assets/css/bootstrap-3.3.2/grid.less
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--assets/css/bootstrap-3.3.2/grid.less (renamed from assets/css/lib/bootstrap/_grid.scss)34
1 files changed, 17 insertions, 17 deletions
diff --git a/assets/css/lib/bootstrap/_grid.scss b/assets/css/bootstrap-3.3.2/grid.less
index f71f8b9..e100655 100644
--- a/assets/css/lib/bootstrap/_grid.scss
+++ b/assets/css/bootstrap-3.3.2/grid.less
@@ -8,16 +8,16 @@
// Set the container width, and override it for fixed navbars in media queries.
.container {
- @include container-fixed();
+ .container-fixed();
- @media (min-width: $screen-sm-min) {
- width: $container-sm;
+ @media (min-width: @screen-sm-min) {
+ width: @container-sm;
}
- @media (min-width: $screen-md-min) {
- width: $container-md;
+ @media (min-width: @screen-md-min) {
+ width: @container-md;
}
- @media (min-width: $screen-lg-min) {
- width: $container-lg;
+ @media (min-width: @screen-lg-min) {
+ width: @container-lg;
}
}
@@ -28,7 +28,7 @@
// width for fluid, full width layouts.
.container-fluid {
- @include container-fixed();
+ .container-fixed();
}
@@ -37,7 +37,7 @@
// Rows contain and clear the floats of your columns.
.row {
- @include make-row();
+ .make-row();
}
@@ -45,7 +45,7 @@
//
// Common styles for small and large grid columns
-@include make-grid-columns();
+.make-grid-columns();
// Extra small grid
@@ -53,7 +53,7 @@
// Columns, offsets, pushes, and pulls for extra small devices like
// smartphones.
-@include make-grid(xs);
+.make-grid(xs);
// Small grid
@@ -61,8 +61,8 @@
// Columns, offsets, pushes, and pulls for the small device range, from phones
// to tablets.
-@media (min-width: $screen-sm-min) {
- @include make-grid(sm);
+@media (min-width: @screen-sm-min) {
+ .make-grid(sm);
}
@@ -70,8 +70,8 @@
//
// Columns, offsets, pushes, and pulls for the desktop device range.
-@media (min-width: $screen-md-min) {
- @include make-grid(md);
+@media (min-width: @screen-md-min) {
+ .make-grid(md);
}
@@ -79,6 +79,6 @@
//
// Columns, offsets, pushes, and pulls for the large desktop device range.
-@media (min-width: $screen-lg-min) {
- @include make-grid(lg);
+@media (min-width: @screen-lg-min) {
+ .make-grid(lg);
}