-
Notifications
You must be signed in to change notification settings - Fork 0
/
input.css
101 lines (93 loc) · 1.66 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
@tailwind base;
@tailwind components;
@tailwind utilities;
.hero-heading{
font-size: 45px;
line-height: 1.2;
}
.hamburger{
cursor: pointer;
width: 24px;
height: 24px;
transition: all 0.25s;
position:absolute;
right: 25px;
}
.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);
}
.img2{
transform: translateX(30px);
}
.img3{
transform: translateX(60px);
}
.img4{
transform: translateX(90px);
}
.img5{
transform: translateX(120px);
}
.img-grid{
display: grid;
grid-template-columns: repeat(3,1fr);
gap: 15px;
}
.faq-answer{
width: 90%;
}
.footer-grid{
display: grid;
grid-template-columns: repeat(5,1fr);
gap: 20px;
}
.text{
font-size: 8px;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.animate-fadeIn {
animation: fadeIn 1s ease-in forwards;
}
@media(max-width:768px){
.hero-heading{
font-size: 30px;
}
.footer-grid{
grid-template-columns: repeat(2,1fr);
}
}