Skip to content

Commit

Permalink
add sass syntax test
Browse files Browse the repository at this point in the history
  • Loading branch information
2betop committed Apr 11, 2014
1 parent a519e19 commit df5e5cc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 22 deletions.
15 changes: 5 additions & 10 deletions expect.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
nav ul {
margin: 0;
padding: 0;
list-style: none; }
nav li {
display: inline-block; }
nav a {
display: block;
padding: 6px 12px;
text-decoration: none; }
.box {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-ms-border-radius: 10px;
border-radius: 10px; }
19 changes: 7 additions & 12 deletions test.sass
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
nav
ul
margin: 0
padding: 0
list-style: none
=border-radius($radius)
-webkit-border-radius: $radius
-moz-border-radius: $radius
-ms-border-radius: $radius
border-radius: $radius

li
display: inline-block

a
display: block
padding: 6px 12px
text-decoration: none
.box
+border-radius(10px)

0 comments on commit df5e5cc

Please sign in to comment.