-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
107 lines (92 loc) · 1.82 KB
/
Copy pathindex.css
File metadata and controls
107 lines (92 loc) · 1.82 KB
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
102
103
104
105
106
107
@tailwind base;
@tailwind components;
@tailwind utilities;
#mindItem {
animation-name: anime;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes anime {
from {
transform: translateX(0);
}
to {
transform: translateX(-100%);
}
}
:root {
scroll-behavior: smooth;
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
body {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
/* .no-scrollbar-custom::-webkit-scrollbar,
body::-webkit-scrollbar {
display: none;
}
.no-scrollbar-custom {
-ms-overflow-style: none;
scrollbar-width: none;
} */
*::-webkit-scrollbar {
display: none !important;
}
body::-webkit-scrollbar,
.main-card::-webkit-scrollbar,
#root::-webkit-scrollbar {
display: initial !important;
background-color: #f2f6fc;
width: 8px;
}
body::-webkit-scrollbar-thumb,
.main-card::-webkit-scrollbar-thumb,
#root::-webkit-scrollbar-thumb {
background-color: #696969;
border-radius: 50px;
}
#res-menu-off {
overflow: scroll;
display: flex;
gap: 20px;
justify-content: start;
align-items: center;
}
#res-menu-off::-webkit-scrollbar {
display: none;
}
#res-menu-offbox {
display: flex;
justify-content: start;
min-width: 220px;
min-height: 60px;
border-radius: 5px;
border: 1px solid #aaaaaa;
border-radius: 10px;
box-shadow: 0px 0px 1px #00000036;
padding: 10px;
margin: 5px 0px;
position: relative;
}
#res-menu-offbox h4 {
display: flex;
align-items: center;
gap: 5px;
font-size: 15px;
font-weight: 700;
letter-spacing: -0.3px;
opacity: 0.9;
}
#res-menu-offbox > div h5 {
white-space: 3px;
font-size: 10px;
margin-top: 3px;
letter-spacing: -0.3px;
opacity: 0.6;
}