Skip to content

Commit

Permalink
Fix empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
divayprakash committed Jan 10, 2019
1 parent 2442861 commit aa21998
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stylus.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ body
body
background: #000


// Single-line comments are removed when Stylus is compiled into CSS.

/* Multi-line comments are preserved. */
Expand Down Expand Up @@ -112,7 +111,6 @@ each time it appears throughout your style sheet.
* /



/* Mixins
==============================*/

Expand Down Expand Up @@ -181,6 +179,7 @@ box-shadow()
button
border-radius 1px 2px / 3px 4px


/* Functions
==============================*/

Expand All @@ -197,6 +196,7 @@ add(a, b)
body
padding add(10px, 5)


/* Conditions
==============================*/
compare(a, b)
Expand All @@ -211,6 +211,7 @@ compare(5, 2) // => bigger
compare(1, 5) // => smaller
compare(10, 10) // => equal


/* Iterations
==============================*/

Expand All @@ -222,7 +223,6 @@ for <val-name> [, <key-name>] in <expression>
for $item in (1..2) /* Repeat block 12 times */
.col-{$item}
width ($item / 12) * 100% /* Calculate row by column number */

```

Now that you know a little about this powerful CSS preprocessor, you're ready to create more dynamic style sheets. To learn more, visit the official stylus documentation at http://stylus-lang.com.

0 comments on commit aa21998

Please sign in to comment.