Skip to content

Commit

Permalink
Replaced block-style comments by inline comments
Browse files Browse the repository at this point in the history
This makes importing the grid into a global CSS file cleaner: the
compiled code only contains your own manageable CSS block-style
comments for easier reading & debugging.
  • Loading branch information
twekz committed Aug 18, 2014
1 parent 427917a commit 5a88018
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 59 deletions.
30 changes: 0 additions & 30 deletions fluidable.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,6 @@
* Site: http://fluidable.com
* Date: 07.08.2014
*/
/*
Config
*/
/*
Mobile and up
*/
.col-group {
zoom: 1;
}
Expand Down Expand Up @@ -114,11 +104,6 @@
padding-right: 16px;
padding-left: 16px;
}
/*
Tablet and up
*/
@media (min-width: 768px) {
.container {
max-width: 704px;
Expand Down Expand Up @@ -302,11 +287,6 @@
content: ".";
}
}
/*
Desktop and up
*/
@media (min-width: 992px) {
.container {
max-width: 928px;
Expand Down Expand Up @@ -478,11 +458,6 @@
left: 0%;
}
}
/*
Large desktop and up
*/
@media (min-width: 1200px) {
.container {
max-width: 1136px;
Expand Down Expand Up @@ -654,11 +629,6 @@
left: 0%;
}
}
/*
Other
*/
.center-block {
margin: 0 auto;
}
Expand Down
57 changes: 28 additions & 29 deletions fluidable.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
* Date: 07.08.2014
*/

/*
Config

*/

// Config
// =============================


// Grid

Expand All @@ -28,11 +28,11 @@
@screenLarge: 1200px;


/*
Mobile and up
*/


// Mobile and up
// =============================


.col-group {
.clear();
Expand Down Expand Up @@ -73,11 +73,11 @@
.columns (@columns);


/*
Tablet and up
*/


// Tablet and up
// =============================


@media (min-width: @screenTablet) {

Expand Down Expand Up @@ -145,11 +145,11 @@

}

/*
Desktop and up
*/


// Desktop and up
// =============================


@media (min-width: @screenDesktop) {

Expand Down Expand Up @@ -209,11 +209,11 @@
}


/*
Large desktop and up
*/


// Large desktop and up
// =============================


@media (min-width: @screenLarge) {

Expand Down Expand Up @@ -273,11 +273,10 @@
}


/*
Other
*/

// Other
// =============================


// Positioning

Expand Down

0 comments on commit 5a88018

Please sign in to comment.