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.
27 lines
523 B
27 lines
523 B
// ---------------------------------------------------------
|
|
// MEDIA QUERIES
|
|
// ---------------------------------------------------------
|
|
|
|
@mixin mq($condition) {
|
|
@media #{$condition} {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin from($breakpoint) {
|
|
@media screen and (min-width: $breakpoint){
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin to($breakpoint) {
|
|
@media screen and (max-width: $breakpoint - 1px) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin between($start, $end){
|
|
@media screen and (min-width: $start) and (max-width: $end - 1px) {
|
|
@content;
|
|
}
|
|
}
|
|
|