-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.css
70 lines (62 loc) · 1.18 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
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
background-image: url('../images/bg-tablet-pattern.svg');
background-repeat: no-repeat;
background-position: 90% -25%;
background-size: 800px;
}
#cta {
background-image: url('../images/bg-simplify-section-desktop.svg');
background-repeat: no-repeat;
background-size: cover;
}
@media (min-width: 1440px) {
body {
background-position: 50% 50%;
background-size: 500px;
}
#cta {
background-image: url('../images/bg-simplify-section-mobile.svg');
}
}
/* Hamburger Menu */
.hamburger {
cursor: pointer;
width: 24px;
height: 24px;
transition: all .25s;
position: relative;
}
.ham-top,
.ham-mid,
.ham-btm {
position: absolute;
top: 0;
left: 0;
width: 24px;
height: 2px;
background: #000;
transform: rotate(0);
transition: all .5s;
}
.ham-mid {
transform: translateY(7px);
}
.ham-btm {
transform: translateY(14px);
}
.open {
transform: rotate(90deg);
transform: translateY(0px);
}
.open .ham-top {
transform: rotate(45deg) translateY(6px) translate(6px);
}
.open .ham-mid {
display: none;
}
.open .ham-btm {
transform: rotate(-45deg) translateY(6px) translate(-6px);
}