forked from ThisIsManta/stylus-supremacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a27bfa0
commit 1fbe259
Showing
3 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"insertColons": false, | ||
"insertSemicolons": false, | ||
"insertBraces": false, | ||
"insertSpaceBeforeComment": true, | ||
"insertSpaceAfterComment": true, | ||
"insertParenthesisAroundIfCondition": true, | ||
"insertLeadingZeroBeforeFraction": false, | ||
"selectorSeparator": "\n", | ||
"quoteChar": "\"", | ||
"tabStopChar": " ", | ||
"alwaysUseZeroWithoutUnit": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/*! | ||
* Some licence | ||
*/ | ||
@require "./file.styl" | ||
/** | ||
multi-line comment | ||
*/ | ||
.class1, .class2 | ||
padding 1px // comment | ||
margin 0px 5px 0px 5px | ||
color alpha(red, 0.5) | ||
@media screen and (min-width 100px)// media comment | ||
if (!condition) // if comment | ||
@extend .class3 | ||
else // else comment | ||
background blue | ||
|
||
.class // hello there | ||
div | ||
width calc(100% / 3) | ||
|
||
.someClass | ||
|
||
// todo implement this later | ||
|
||
.anotherClass | ||
border 0 | ||
|
||
// end of file comment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/*! | ||
* Some licence | ||
*/ | ||
@require "./file.styl" | ||
|
||
/** | ||
multi-line comment | ||
*/ | ||
.class1 | ||
.class2 | ||
padding 1px // comment | ||
margin 0 5px 0 5px | ||
color alpha(red, .5) | ||
|
||
@media screen and (min-width 100px) // media comment | ||
if (!condition) // if comment | ||
@extend .class3 | ||
else // else comment | ||
background blue | ||
|
||
.class // hello there | ||
div | ||
width calc(100% / 3) | ||
|
||
.someClass | ||
|
||
// todo implement this later | ||
|
||
.anotherClass | ||
border 0 | ||
|
||
// end of file comment |