File size: 613 Bytes
41a71fd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Медиа запросы для разных ширин экрана
// Пример использования: @include desktop-1200 {font-size: 20px;}
@mixin before-1366 {
    @media screen and (max-width: 1365px) {
        @content;
    }
}

@mixin before-1200 {
    @media screen and (max-width: 1199px) {
        @content;
    }
}

@mixin before-1024 {
    @media screen and (max-width: 1023px) {
        @content;
    }
}

@mixin before-768 {
    @media screen and (max-width: 767px) {
        @content;
    }
}

@mixin before-480 {
    @media screen and (max-width: 479px) {
        @content;
    }
}