-
Notifications
You must be signed in to change notification settings - Fork 437
/
input.css
73 lines (61 loc) · 1.22 KB
/
input.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
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
background-image: url('../img/bg-tablet-pattern.svg');
background-repeat: no-repeat;
background-size: 800px;
background-position: 90% -25%;
}
#cta {
background-image: url('../img/bg-simplify-section-desktop.svg');
background-repeat: no-repeat;
}
@media (max-width: 576px) {
body {
background-position: 50px -50px;
background-size: 500px;
}
#cta {
background-image: url('../img/bg-simplify-section-mobile.svg');
}
}
/* Hamburger Menu */
.hamburger {
cursor: pointer;
width: 24px;
height: 24px;
transition: all 0.25s;
position: relative;
}
.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
position: absolute;
top: 0;
left: 0;
width: 24px;
height: 2px;
background: #000;
transform: rotate(0);
transition: all 0.5s;
}
.hamburger-middle {
transform: translateY(7px);
}
.hamburger-bottom {
transform: translateY(14px);
}
.open {
transform: rotate(90deg);
transform: translateY(0px);
}
.open .hamburger-top {
transform: rotate(45deg) translateY(6px) translate(6px);
}
.open .hamburger-middle {
display: none;
}
.open .hamburger-bottom {
transform: rotate(-45deg) translateY(6px) translate(-6px);
}