-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.css
75 lines (65 loc) · 1.32 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
74
75
@tailwind base;
@tailwind components;
@tailwind utilities;
@media screen(lg){
.bg-hero{
width: 2000px;
height: 350px;
left: 30%;
@apply absolute rounded-l-full top-52 bg-violet-700;
}
.bg-tabs{
width: 2000px;
height: 350px;
right: 60%;
@apply absolute rounded-r-full top-60 bg-violet-700;
}
}
.ficon:hover {
filter: invert(53%) sepia(38%) saturate(3303%) hue-rotate(326deg) brightness(101%) contrast(96%);
}
.hamburger {
cursor: pointer;
width: 24px;
height: 24px;
transition: all 0.25s;
position: relative;
}
.hamburger-top,
.hamburger-middle,
.hamburger-bottom {
content: '';
position: absolute;
width: 24px;
height: 3px;
top: 0;
left: 0;
background: #000;
transform: rotate(0);
transition: all 0.5s;
}
.hamburger-middle {
transform: translateY(7px);
}
.hamburger-bottom {
transform: translateY(14px);
background: #000;
}
.open {
transform: rotate(90deg);
transform: translateY(0px);
position: fixed;
top: 50px;
right: 25px;
}
.open .hamburger-top {
transform: rotate(45deg) translateY(6px) translateX(6px);
background-color: #fff;
}
.open .hamburger-middle {
display: none;
}
.open .hamburger-bottom {
transform: rotate(-45deg) translateY(6px) translateX(-6px);
background-color: #fff;
}