First commit of base theme.
This commit is contained in:
commit
72ac450454
20 changed files with 1089 additions and 0 deletions
32
scss/_variables.scss
Normal file
32
scss/_variables.scss
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
|
||||
//
|
||||
// VARIABLES
|
||||
//
|
||||
|
||||
// Colors
|
||||
$blue: #4183C4;
|
||||
$orange: #D26911;
|
||||
|
||||
// Grays
|
||||
$black: #000;
|
||||
$darkerGray: #222;
|
||||
$darkGray: #333;
|
||||
$gray: #666;
|
||||
$lightGray: #bbb;
|
||||
$lighterGray: #eee;
|
||||
$white: #fff;
|
||||
|
||||
// Font stacks
|
||||
$helvetica: Helvetica, Arial, sans-serif;
|
||||
$helveticaNeue: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
$georgia: Georgia, serif;
|
||||
|
||||
// Breakpoints
|
||||
$mobile-width: 520px !default;
|
||||
|
||||
// Mobile breakpoint
|
||||
@mixin mobile {
|
||||
@media screen and (max-width: $mobile-width) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue