el.xwx.moe/styles/globals.css

101 lines
1.4 KiB
CSS
Raw Normal View History

2023-01-22 15:39:35 -06:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-02-18 21:32:02 -06:00
/* Hide scrollbar */
.hidw-scrollbar::-webkit-scrollbar {
display: none;
}
.hide-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}
2023-03-05 15:03:20 -06:00
::selection {
background-color: #0ea5e9;
color: white;
}
.hyphens {
hyphens: auto;
}
2023-06-10 17:55:18 -05:00
.rotate {
transition: transform 0.1s ease;
transform: rotate(-90deg);
}
.rotate-reverse {
transition: transform 0.1s ease;
transform: rotate(0deg);
}
2023-03-05 15:03:20 -06:00
.fade-in {
animation: fade-in-animation 100ms;
}
@keyframes fade-in-animation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
2023-04-30 15:54:40 -05:00
.slide-up {
animation: slide-up-animation 70ms;
}
2023-03-05 15:03:20 -06:00
@keyframes slide-up-animation {
0% {
2023-03-22 18:11:54 -05:00
transform: translateY(15%);
2023-03-05 15:03:20 -06:00
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
2023-04-30 15:54:40 -05:00
.slide-right {
2023-05-01 05:07:01 -05:00
animation: slide-right-animation 200ms;
2023-04-30 15:54:40 -05:00
}
@keyframes slide-right-animation {
0% {
2023-05-01 05:07:01 -05:00
transform: translateX(-100%);
2023-04-30 15:54:40 -05:00
}
100% {
transform: translateX(0);
}
}
2023-05-31 09:30:45 -05:00
.slide-right-with-fade {
animation: slide-right-animation 150ms;
}
@keyframes slide-right-animation {
0% {
transform: translateX(-50%);
opacity: 0;
}
100% {
transform: translateX(0);
opacity: 1;
}
}
2023-06-02 06:59:52 -05:00
/* For react-colorful */
.color-picker .react-colorful {
width: 100%;
2023-06-02 06:59:52 -05:00
height: 7.5rem;
}
.color-picker .react-colorful__hue {
height: 1rem;
}
.color-picker .react-colorful__pointer {
width: 1.3rem;
height: 1.3rem;
}