forked from SimenB/stylint
-
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
Ross
committed
May 16, 2015
1 parent
430ae5c
commit 09d0711
Showing
11 changed files
with
141 additions
and
48 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 |
---|---|---|
|
@@ -15,3 +15,4 @@ npm-debug.log | |
node_modules | ||
coverage | ||
lcov.info | ||
wired-styl |
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
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
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
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
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
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
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
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,10 @@ | ||
.a | ||
display: block; | ||
.b | ||
display: block; | ||
|
||
|
||
.a | ||
display: block; | ||
.b | ||
display: block; |
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 |
---|---|---|
@@ -1,28 +1,29 @@ | ||
@keyframes | ||
0% | ||
margin 0 | ||
100% | ||
margin 50px | ||
0% | ||
margin 0 | ||
100% | ||
margin 50px | ||
|
||
@keyframes | ||
from | ||
margin 0 | ||
to | ||
margin 50px | ||
from | ||
margin 0 | ||
to | ||
margin 50px | ||
|
||
|
||
.test | ||
border-bottom 0 | ||
border-bottom 0 | ||
|
||
.test2 | ||
border-top 0 | ||
border-top 0 | ||
|
||
.marg-big | ||
margin 50px | ||
margin 50px | ||
|
||
.marg-none | ||
margin 0px | ||
margin 0px | ||
|
||
from | ||
0 | ||
to | ||
0 | ||
from | ||
0 | ||
to | ||
0 |
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,68 @@ | ||
@require '../singles/**/*' | ||
@require '*' | ||
|
||
*::selection | ||
background blue | ||
|
||
div * | ||
text-transform uppercase | ||
|
||
.margin | ||
margin unit( 5 * 5, 'px' ) | ||
|
||
.padding | ||
padding unit( 5*5, 'px' ) | ||
|
||
/** | ||
* styl/style.styl -> css/style.css | ||
* | ||
*/ | ||
|
||
|
||
// nibbles | ||
@require 'nib/overflow' // handy aliases | ||
@require 'nib/positions' // handy aliases | ||
@require 'nib/reset' // reset and normalize | ||
@require 'nib/size' // handy aliases | ||
|
||
@require '../core/_vars' | ||
@require '../core/_extends' | ||
@require '../core/_mixins' | ||
@require '../core/_base' | ||
@require '../core/_type' | ||
@require '../core/_cards' | ||
@require '../core/_footer' | ||
|
||
// ads and consumer marketing | ||
@require '../ads/**/*' | ||
|
||
// flexbox spec | ||
@require '../grid/**/*' | ||
|
||
// global header | ||
@require '../header/**/*' | ||
|
||
// our many helper classes (hide / show, padding/margin, etc) | ||
@require '../helpers/**/*' | ||
|
||
// grids (home, sections, tags, etc) | ||
@require '../sections/**/*' | ||
|
||
// styles for articles, post-header is inlined | ||
@require '../singles/**/*' | ||
|
||
// search page styles, legacy posts, etc | ||
@require '../misc/_search' | ||
@require '../misc/_wp' | ||
|
||
// navigation | ||
@require '../navigation/**/*' | ||
|
||
// our ui elements | ||
@require '../ui/_icons' | ||
@require '../ui/_ui-base' | ||
@require '../ui/_ui-relative' | ||
@require '../ui/_ui-misc' | ||
@require '../ui/_ui-reviews' | ||
@require '../ui/_ui-singles' | ||
@require '../ui/_ui-social' |