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
body { | |
@include breakpoint($large-phone-and-up) { | |
font-size: 1.1em; | |
} | |
} | |
@include breakpoint($small-phone-and-down) { | |
.main-menu { | |
background-color: $color-menu-background; | |
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
$small-phone-and-down: "screen and (max-width: " + pxToEm(319) + ")"; | |
$large-phone-and-up: "screen and (min-width: " + pxToEm(400) + ")"; | |
$large-desktop-and-down: "screen and (max-width: #{$width-frame-max})"; |
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 breakpoint($query) { | |
@media #{$query} { @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
$color-brand: #74d0f5; | |
$color-accent: #34b924; | |
$font-weight-light: 200; | |
$font-weight-normal: 400; | |
$font-weight-medium: 500; | |
$font-weight-strong: 900; | |
$color-button-text: $brand-color; | |
$color-button-plain-bg: lighten($brand-color, 10%); | |
$color-button-plain: darken($brand-color, 10%); | |
$size-tab-spacing: 0; |
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
$color-brand: #022754; | |
$color-accent: #b3c21c; | |
$font-weight-light: normal; | |
$font-weight-normal: normal; | |
$font-weight-medium: 800; | |
$font-weight-strong: 900; | |
$color-button-text: $accent-color; | |
$color-button-plain-bg: #edf2f5; | |
$color-button-plain: #0093d0; | |
$size-tab-spacing: 0; |
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
http_path = "/skin/frontend/package/theme2/" | |
css_dir = "css" | |
sass_dir = "css" | |
images_dir = "images" | |
javascripts_dir = "js" | |
output_style = :nested | |
add_import_path "../theme1/css" |
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
http_path = "/skin/frontend/package/theme1/" | |
css_dir = "css" | |
sass_dir = "css" | |
images_dir = "images" | |
javascripts_dir = "js" | |
output_style = :nested |
NewerOlder