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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
@function to-list($value, $keep: 'both') { | |
$keep: if(index('keys' 'values', $keep), $keep, 'both'); | |
@if type-of($value) == map { | |
$keys: (); |
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
$fonts :( | |
size: 20px, | |
style: italic, | |
weight: bold | |
); |
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
<header> | |
<h2>Grid Animation</h2> | |
</header> | |
<section> | |
<div class="item"></div> | |
<div class="item"></div> | |
<div class="item"></div> | |
<div class="item"></div> | |
<div class="item"></div> | |
<div class="item"></div> |
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
<input type="email" name="email" required placeholder="Email" /> | |
<div class="box"> | |
<input type="text" name="name" required placeholder="Name" /> | |
<input type="email" name="email" required placeholder="Email" /> | |
<input type="password" name="password" required placeholder="Password" /> | |
</div> |
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin box-shadow($shadows...){ | |
@if length($shadows) >= 1 { | |
-webkit-box-shadow: $shadows; | |
box-shadow: $shadows; | |
} @else { |
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
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
//声明一个混合宏 | |
@mixin border-radius { | |
-webkit-border-radius: 3px; | |
border-radius: 3px; | |
} |
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
<div data-row> | |
<div data-col class="content"> | |
<div data-row> | |
<div data-col="1" class="block"></div> | |
<div data-col="2" class="block"></div> | |
<div data-col="3" class="block"></div> | |
</div> | |
</div> | |
<div data-col class="sidebar"> | |
<div data-col="4" class="block"></div> |
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
<div data-row> | |
<div data-col class="content"> | |
<div data-row> | |
<div data-col="1" class="block"></div> | |
<div data-col="2" class="block"></div> | |
<div data-col="3" class="block"></div> | |
</div> | |
</div> | |
<div data-col class="sidebar"> | |
<div data-col="4" class="block"></div> |
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
<div data-row> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
<div data-col="1"></div> |
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
<div data-row> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
<div data-col="1"></div> | |
</div> |