Created
November 25, 2015 07:12
-
-
Save myericho/35b5ddd97e391c3245c4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
<a>testetest</a> | |
<div>test</div> | |
<ul> | |
<li class='top'>gggg</li> | |
<li>第2個</li> | |
</ul> |
This file contains hidden or 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
/*第一階段*/ | |
$link-color:red; | |
$font-size:20px; | |
a{ | |
color:$link-color; | |
font-size:$font-size; | |
} | |
div{ | |
color:$link-color; | |
font-size:$font-size; | |
} | |
/*巢狀迴圈階段*/ | |
ul{ | |
margin:10px; | |
li{ | |
padding:$font-size; | |
&.top{ | |
padding-left:300px; | |
} | |
} | |
} |
This file contains hidden or 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
@charset "UTF-8"; | |
/*第一階段*/ | |
a { | |
color: red; | |
font-size: 20px; | |
} | |
div { | |
color: red; | |
font-size: 20px; | |
} | |
/*巢狀迴圈階段*/ | |
ul { | |
margin: 10px; | |
} | |
ul li { | |
padding: 20px; | |
} | |
ul li.top { | |
padding-left: 300px; | |
} |
This file contains hidden or 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
<a>testetest</a> | |
<div>test</div> | |
<ul> | |
<li class='top'>gggg</li> | |
<li>第2個</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment