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
################################### | |
## Lincoln Loop Base Sass Lint File | |
################################### | |
# Linter Options | |
# rules @ https://github.com/sasstools/sass-lint/tree/master/docs/rules | |
options: | |
# Don't merge default rules | |
merge-default-rules: false | |
# Rule Configuration |
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
@mixin by-x($num, $spacing: 20px, $max-width: false) { | |
width: calc(100% * 1/#{$num} - #{$spacing}); | |
@if $max-width { | |
max-width: $max-width; | |
} | |
} |
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 class="color-grid"> | |
<div class="color"></div> | |
<span class="color"></span> | |
<div class="color"></div> | |
<span class="color"></span> | |
<div class="color"></div> | |
<span class="color"></span> | |
<div class="color"></div> | |
<span class="color"></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
<div class="color-grid"> | |
<div class="color"></div> | |
<div class="color"></div> | |
<div class="color"></div> | |
<div class="color"></div> | |
<div class="color"></div> | |
<div class="color"></div> | |
<div class="color"></div> | |
<div class="color"></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
<header class="site-header"> | |
</header> |
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 href="#" class="example1">Hover over Me</a> | |
<a href="#" class="example2">Hover over Me</a> |
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
# Intro to Go | |
Go is opinionated. | |
## Performance | |
Go is extremely fast. "100x faster than the heavily cached Ruby option" | |
"1% of memory footprint" |
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
/* | |
* Class-based Grid | |
*/ | |
.grid-row { | |
@include clear; // Insert your clearfix here | |
} | |
.grid-last { | |
@include omega; |
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 class="field {% if field_class %} {{ field_class }}{% endif %}"> | |
<label for="id_{{ field.html_name }}"> | |
{% if label %}{{ label }}{% else %}{{ field.label }}{% endif %} | |
{% if not field.required %}<small>optional</small>{% endif %} | |
</label> | |
{{ field }} | |
{% if help_text %} | |
<p class="help-text">{{ help_text }}</p> | |
{% elif field.help_text %} |