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-var: 10px; | |
| @function strip-unit($number) { | |
| @if type-of($number) == "number" and not unitless($number) { | |
| @return $number / ($number * 0 + 1); | |
| } | |
| @return $number; | |
| } |
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
| // /* ------------------------------------*\ | |
| // #Container Query | |
| // \*------------------------------------ */ | |
| /// Container Query | |
| /// | |
| /// @param {Map} $map - 1-dimensional map with queries | |
| /// key[String]: alias | |
| /// value[Number]: unitless value that reflects px-based value | |
| /// (handled via JS, needs to be unitless) |
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
| $HEADLINES: ( | |
| 1: ( | |
| size: 10px, | |
| weight: 700, | |
| margin: 1rem, | |
| ), | |
| 2: ( | |
| size: 20px, | |
| weight: 700, | |
| margin: 2rem, |
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.5.4) | |
| // ---- | |
| // Sass variables are case-sensitive | |
| $avenger: 'Spiderman'; | |
| $AVENGER: 'Hulk'; | |
| .peter { | |
| hero: $avenger; |
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.5.4) | |
| // ---- | |
| $module-variable: 'custom'; | |
| $module-variable: 'default' !default; | |
| .module { | |
| debug: $module-variable; |
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
| [commit] | |
| verbose = true | |
| [user] | |
| name = Florian Uhlig | |
| email = [email protected] | |
| [alias] | |
| latest = log --oneline --no-merges HEAD..@{upstream} | |
| quick-amend = commit --amend --no-verify --no-edit | |
| quick-push = push --force-with-lease | |
| quick-log = log --oneline -n10 |
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
| [$PACKAGE$/$TYPE$] $Scope$: $Subject$ ($TICKET$) | |
| $body$ | |
| $footer$ |
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
| // /*------------------------------------*\ | |
| // #BROWSER-HACKS | |
| // \*------------------------------------*/ | |
| // Target specific browsers with CSS only. | |
| // http://browserhacks.com/ | |
| // IE CSS HOOK | |
| // Target only IE10+ | |
| @mixin ie-only() { |
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
| <h3>lighten</h3> | |
| <span class="[ weather-demo ] [ weather-rain weather-rain-1 weather-rain--lighten ]">0</span> | |
| <span class="[ weather-demo ] [ weather-rain weather-rain-2 weather-rain--lighten ]">4</span> | |
| <span class="[ weather-demo ] [ weather-rain weather-rain-3 weather-rain--lighten ]">8</span> | |
| <span class="[ weather-demo ] [ weather-rain weather-rain-4 weather-rain--lighten ]">12</span> | |
| <span class="[ weather-demo ] [ weather-rain weather-rain-5 weather-rain--lighten ]">16</span> | |
| <span class="[ weather-demo ] [ weather-rain weather-rain-6 weather-rain--lighten ]">20</span> | |
| <span class="[ weather-demo ] [ weather-rain weather-rain-7 weather-rain--lighten ]">24</span> | |
| <span class="[ weather-demo ] [ weather-rain weather-rain-8 weather-rain--lighten ]">28</span> | |
| <span class="[ weather-demo ] [ weather-rain weather-rain-9 weather-rain--lighten ]">32</span> |
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
| /*------------------------------------*\ | |
| #CUSTOM-SELECT | |
| \*------------------------------------*/ | |
| //// | |
| /// Custom Select | |
| /// @group components.select | |
| //// | |
| /// consistent height for form inputs |
NewerOlder