-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinput.css
72 lines (56 loc) · 1.09 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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body{
font-family: 'Montserrat', sans-serif;
}
}
@layer components{
.container{
@apply max-w-[1300px]
}
}
/* <----------------------- Burger menu setup -----------------------> */
.rob{
font-family: 'Roboto', sans-serif;
}
.grid__cont{
grid-template-columns: repeat(auto-fit , minmax(300px,1fr));
grid-gap:50px;
}
.anim-tran{
transition: all .2s ease-in-out;
}
.modal{
transform: translateY(-200%);
background-color: #fff;
width: 100%;
position: absolute;
transition: all 1s ease;
}
.active{
transform: translateY(0);
transition: all 1s ease;
}
.slider{
position: absolute;
animation: scroll 50s linear infinite;
transform: translate(0,50%);
}
.slider-container{
position: relative;
width: 100%;
height: 50vh;
}
.slider:hover{
animation-play-state: paused;
}
@keyframes scroll {
0%{
left: -200px;
}
100%{
left: 100%;
}
}