-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.css
76 lines (63 loc) · 1.45 KB
/
utils.css
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/*------------------------------------------------------------------------------------*/
/* REVEAL NONE */
/*------------------------------------------------------------------------------------*/
@keyframes none-to-block {
0% {
display: none;
opacity: 0;
}
1% {
display: block;
opacity: 0;
}
100% {
display: block;
opacity: 1;
}
}
/*------------------------------------------------------------------------------------*/
/* HIDDEN DOWN */
/*------------------------------------------------------------------------------------*/
.hidden-xs {
@media $b_xs {
display: none !important;
}
}
.hidden-sm {
@media $b_sm_max {
display: none !important;
}
}
.hidden-md {
@media $b_md_max {
display: none !important;
}
}
.hidden-lg {
@media $b_lg_max {
display: none !important;
}
}
/*------------------------------------------------------------------------------------*/
/* HIDDEN UP */
/*------------------------------------------------------------------------------------*/
.hidden-sm-up {
@media $b_sm {
display: none !important;
}
}
.hidden-md-up {
@media $b_md {
display: none !important;
}
}
.hidden-lg-up {
@media $b_lg {
display: none !important;
}
}
.hidden-xl-up {
@media $b_xl {
display: none !important;
}
}