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
// Grid Settings | |
$rowWidth: 1000px; | |
$columnGutter: 30px; | |
$totalColumns: 12; | |
$mobileTotalColumns: 4; |
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
// Colors Settings | |
$mainColor: #2ba6cb; | |
$secondaryColor: #e9e9e9; | |
$alertColor: #c60f13; | |
$successColor: #5da423; | |
$txtColor: #222; | |
$highlightColor: #ffff99; | |
$black: #000; | |
$white: #fff; | |
$shinyEdge: rgba(#fff, .5); |
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
// Typography Settings | |
$headerFontFamily: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; | |
$headerFontWeight: bold; | |
$headerFontColor: #222; | |
$bodyFontFamily: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; | |
$bodyFontWeight: normal; | |
$bodyFontColor: $txtColor; | |
... |
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
// Form Settings | |
$formSpacing: 12px; | |
// Tab Settings | |
$tabHeight: 40px; | |
// Nav Bar Settings | |
$navBarHeight: 40px; | |
$navFlyoutBaseWidth: 250px; |
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> | |
<aside></aside> | |
<section> | |
<article> | |
<header></header> | |
<div></div> | |
</article> | |
</section> | |
</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
header { @include outerRow(); | |
aside { @include column(4); } | |
section { @include column(8); | |
article { @include innerRow(); | |
header { @include column(2); | |
mid-width: 0; } | |
div { @include column(10); } | |
} | |
} | |
} |
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
.element { | |
@include cssTriangle(5px, #ff0000, [top, bottom, left, right]); | |
} |
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
.element { | |
@include font-size(18); | |
} |
OlderNewer