2023-04-09 23:28:52 +05:30
|
|
|
@font-face {
|
2024-02-25 18:44:47 +05:30
|
|
|
font-family: "font";
|
|
|
|
|
src: url("font.ttf") format("truetype");
|
2023-04-09 23:28:52 +05:30
|
|
|
}
|
2024-02-07 00:11:07 +05:30
|
|
|
* {
|
2024-02-25 18:44:47 +05:30
|
|
|
font-family: "font" !important;
|
2023-04-09 23:28:52 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@tailwind base;
|
|
|
|
|
@tailwind components;
|
2024-02-15 00:26:13 +05:30
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
|
|
.ant-select-selection-search-input {
|
|
|
|
|
border: none !important;
|
|
|
|
|
box-shadow: none !important;
|
2024-02-25 18:44:47 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.gradient-border {
|
|
|
|
|
--borderWidth: 3px;
|
|
|
|
|
position: relative;
|
|
|
|
|
border-radius: var(--borderWidth);
|
|
|
|
|
}
|
|
|
|
|
.gradient-border:after {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: calc(-1 * var(--borderWidth));
|
|
|
|
|
left: calc(-1 * var(--borderWidth));
|
|
|
|
|
height: calc(100% + var(--borderWidth) * 2);
|
|
|
|
|
width: calc(100% + var(--borderWidth) * 2);
|
|
|
|
|
background: linear-gradient(
|
|
|
|
|
60deg,
|
|
|
|
|
#f79533,
|
|
|
|
|
#f37055,
|
|
|
|
|
#ef4e7b,
|
|
|
|
|
#a166ab,
|
|
|
|
|
#5073b8,
|
|
|
|
|
#1098ad,
|
|
|
|
|
#07b39b,
|
|
|
|
|
#6fba82
|
|
|
|
|
);
|
|
|
|
|
border-radius: calc(2 * var(--borderWidth));
|
|
|
|
|
z-index: -1;
|
|
|
|
|
animation: animatedgradient 3s ease alternate infinite;
|
|
|
|
|
background-size: 300% 300%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes animatedgradient {
|
|
|
|
|
0% {
|
|
|
|
|
background-position: 0% 50%;
|
|
|
|
|
}
|
|
|
|
|
50% {
|
|
|
|
|
background-position: 100% 50%;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
background-position: 0% 50%;
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-05 20:28:29 +05:30
|
|
|
/* Hide scrollbar for Chrome, Safari and Opera */
|
|
|
|
|
.no-scrollbar::-webkit-scrollbar {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hide scrollbar for IE, Edge and Firefox */
|
|
|
|
|
.no-scrollbar {
|
|
|
|
|
-ms-overflow-style: none; /* IE and Edge */
|
|
|
|
|
scrollbar-width: none; /* Firefox */
|
|
|
|
|
}
|