forked from hudochenkov/stylelint-config-hudochenkov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.css
52 lines (41 loc) · 689 Bytes
/
test.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
@custom-media --header-palm (width < 782px);
@custom-media --not-header-palm (width >= 782px);
.header {
position: relative;
z-index: 2;
margin-bottom: 50px;
color: rgb(0 0 0 / 30%);
transition-delay: 0.3s;
}
.header__inner {
position: relative;
z-index: 1;
border-bottom: 1px solid transparent;
@media (--header-palm) {
margin-bottom: 20px;
border-bottom: 1px solid #ecf0f1;
}
}
.footer {
$hello: 0;
$hi: #000;
--hello: 0px;
--hi: black;
position: relative;
z-index: 1;
@media (min-width: 100px) {
display: block;
}
@media (min-width: 200px) {
display: block;
}
&::before {
display: none;
}
.a {
display: none;
}
.b {
display: grid;
}
}