From aa21998323ce4ba75fb2961ffdd733de7f0e4787 Mon Sep 17 00:00:00 2001 From: Divay Prakash Date: Thu, 10 Jan 2019 17:07:51 +0530 Subject: Fix empty lines --- stylus.html.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'stylus.html.markdown') diff --git a/stylus.html.markdown b/stylus.html.markdown index 27dc3401..1c5ddd32 100644 --- a/stylus.html.markdown +++ b/stylus.html.markdown @@ -43,7 +43,6 @@ body body background: #000 - // Single-line comments are removed when Stylus is compiled into CSS. /* Multi-line comments are preserved. */ @@ -112,7 +111,6 @@ each time it appears throughout your style sheet. * / - /* Mixins ==============================*/ @@ -181,6 +179,7 @@ box-shadow() button border-radius 1px 2px / 3px 4px + /* Functions ==============================*/ @@ -197,6 +196,7 @@ add(a, b) body padding add(10px, 5) + /* Conditions ==============================*/ compare(a, b) @@ -211,6 +211,7 @@ compare(5, 2) // => bigger compare(1, 5) // => smaller compare(10, 10) // => equal + /* Iterations ==============================*/ @@ -222,7 +223,6 @@ for [, ] in 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. -- cgit v1.2.3