You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
839 B

11 years ago
$primary_color: #ac0000;
$secondary_color: #00d2c2;
11 years ago
$background_color: #FFF;
$menu_color: #111;
11 years ago
$theme_off: #eaeaea;
$text_color: #000;
11 years ago
10 years ago
$font_size: 14px;
11 years ago
$header_height: 80px;
$header_width: 132px;
$header_width_mobile: 44px;
11 years ago
$padding: 20px;
11 years ago
$border_radius: 3px;
$cubic: cubic-bezier(0.9,0,0.1,1);
11 years ago
$mq-phone: 320px !default;
$mq-phablet: 480px !default;
$mq-tablet: 768px !default;
$mq-desktop: 1024px !default;
$mq-desktop-plus: 1382px !default;
@mixin media-phone {
@media (max-width : $mq-phone) {
@content;
}
}
@mixin media-phablet {
@media (max-width : $mq-phablet) {
@content;
}
}
@mixin media-tablet {
@media (max-width : $mq-tablet) {
@content;
}
}
@mixin media-desktop {
@media (max-width : $mq-desktop) {
@content;
}
}
@mixin media-desktop-plus {
@media (max-width : $mq-desktop-plus) {
@content;
}
}