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.1.0) | |
// ---- | |
// ========================================================================== | |
// Title: Spacing module | |
// ========================================================================== | |
$rem-base: 16px; | |
// 13px / 16px |
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
<ul> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></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
<ul> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></li> | |
<li><a>dawdwa</a></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.0.1) | |
// ---- | |
// Mixin for placeholders | |
@mixin placeholder { | |
&::-moz-placeholder { @content } | |
&:-ms-input-placeholder { @content } | |
&::-webkit-input-placeholder { @content } |
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.0) | |
// ---- | |
// Mixins | |
@mixin extend($class:'&') { | |
@if ($class != '&') { | |
.#{$class} { | |
@content | |
} |
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 (v2.0.0) | |
// ---- | |
$homepage-stripe-feature__count: 2; | |
@mixin create-class-image($class, $iterator, $extension:'jpg', $extend: ()) { | |
&.#{$class}-#{$iterator} { | |
background-image: url('../i/#{$class}-#{$iterator}.#{$extension}'); | |
@include expand-list-map($extend); | |
} |
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 (v2.0.0) | |
// ---- | |
/* =Mixin for dynamic backgrounds | |
=Author: @Donuteeze w/Adam Šír | |
============================== */ | |
@mixin content-section-background($class, $nth-child:'all', $steps: 4 ) { | |
@for $i from 1 through $steps { |
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 (v2.0.0) | |
// ---- | |
@mixin list-map($list) { | |
@each $value in $list { | |
#{nth($value, 1)}: nth($value, 2); | |
} | |
} |
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 (v2.0.0) | |
// ---- | |
$list: "item:1", "item:2", "item:3"; | |
@each $single in $list { | |
} |
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 (v2.0.0) | |
// ---- | |
$subject: (background:#fff); | |
@mixin list-map($class) { | |
@mixin property($properties...){ | |
$length: length($properties); | |
$value: nth($properties, $length); |
NewerOlder