-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
61 lines (53 loc) · 957 Bytes
/
input.css
File metadata and controls
61 lines (53 loc) · 957 Bytes
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,400italic,600italic|Roboto+Slab:400,700");
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body::-webkit-scrollbar{
display: none;
}
.sidedesactive{
transform: translateX(-100%);
transition: 1s;
opacity: 0;
min-width: 23.2%;
}
.sideactive{
transform: translateX(0);
transition: 1s;
opacity: 1;
}
.sideact{
opacity: 1;
transition: 1s;
pointer-events: all;
}
.sidedesact{
opacity: 0;
transition: 1s;
pointer-events: none;
}
.man{
transform: translateX(-24%);
transition: 1s;
min-width: 100%;
scrollbar-width: none;
}
.men{
transform: translateX(0);
transition: 1s;
min-width: 76.8%;
}
.man .icons{
width: 69%;
height: 21vh;
}
.men .icons{
width: 68%;
height: 16vh;
}