-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
54 lines (45 loc) · 833 Bytes
/
Copy pathinput.css
File metadata and controls
54 lines (45 loc) · 833 Bytes
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
@tailwind base;
@tailwind components;
@tailwind utilities;
.hamburger {
position: relative;
cursor: pointer;
width: 24px;
height: 24px;
transition: all 0.25s;
}
.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
position: absolute;
width: 24px;
height: 3px;
top: 0;
left: 0;
background: hsl(224, 71%, 4%);
transition: all 0.25s;
}
.hamburger-middle {
top: 7px;
}
.hamburger-bottom {
top: 14px;
}
.open {
align-self: self-end;
transform: rotate(90deg) translateY(90);
}
.open .hamburger-top {
transform: rotate(45deg) translateX(5px);
}
.open .hamburger-middle {
transform: rotate(-45deg) translateX(5px);
}
.open .hamburger-bottom {
display: none;
}
.boost-links {
background-image: url("../images/bg-boost-desktop.svg");
background-repeat: no-repeat;
backgroup-size: cover;
}