Files
page-assist/src/assets/tailwind.css

68 lines
1.2 KiB
CSS
Raw Normal View History

2023-04-09 23:28:52 +05:30
@font-face {
font-family: "Arimo";
src: url("fonts/Arimo.ttf");
font-display: swap;
2023-04-09 23:28:52 +05:30
}
2024-04-27 23:32:47 +05:30
.arimo {
font-family: "Arimo", sans-serif;
font-weight: 400;
font-style: normal;
2023-04-09 23:28:52 +05:30
}
@tailwind base;
@tailwind components;
2024-02-15 00:26:13 +05:30
@tailwind utilities;
2024-02-15 00:26:13 +05:30
.ant-select-selection-search-input {
border: none !important;
box-shadow: none !important;
}
/* 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 */
}
@keyframes gradient-border {
0% {
border-image-source: linear-gradient(
45deg,
#f79533,
#f37055,
#ef4e7b,
#a166ab
);
2024-04-27 23:32:47 +05:30
}
50% {
border-image-source: linear-gradient(45deg, #ef4e7b, #a166ab);
}
74% {
border-image-source: linear-gradient(60deg, #5073b8, #1098ad);
}
100% {
border-image-source: linear-gradient(
45deg,
#f79533,
#f37055,
#ef4e7b,
#a166ab
);
}
}
.animated-gradient-border {
border: 4px solid;
border-image-slice: 1;
animation: gradient-border 3s infinite;
border-radius: 10px;
2024-04-27 23:32:47 +05:30
}