75 lines
1.3 KiB
CSS
75 lines
1.3 KiB
CSS
|
|
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
button:hover {
|
|
border-color: #646cff;
|
|
}
|
|
|
|
/* Estilos para el slicer de rango */
|
|
.slider-thumb {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
background: transparent;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.slider-thumb::-webkit-slider-thumb {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
height: 20px;
|
|
width: 20px;
|
|
border-radius: 50%;
|
|
background: #3b82f6;
|
|
border: 2px solid white;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
cursor: pointer;
|
|
pointer-events: all;
|
|
position: relative;
|
|
z-index: 3;
|
|
}
|
|
|
|
.slider-thumb::-moz-range-thumb {
|
|
height: 20px;
|
|
width: 20px;
|
|
border-radius: 50%;
|
|
background: #3b82f6;
|
|
border: 2px solid white;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
cursor: pointer;
|
|
pointer-events: all;
|
|
border: none;
|
|
}
|
|
|
|
.slider-thumb::-webkit-slider-thumb:hover {
|
|
background: #2563eb;
|
|
}
|
|
|
|
.slider-thumb::-moz-range-thumb:hover {
|
|
background: #2563eb;
|
|
}
|
|
|
|
/* Utility class to hide scrollbars */
|
|
.scrollbar-hide {
|
|
-ms-overflow-style: none; /* Internet Explorer 10+ */
|
|
scrollbar-width: none; /* Firefox */
|
|
}
|
|
|
|
.scrollbar-hide::-webkit-scrollbar {
|
|
display: none; /* Safari and Chrome */
|
|
}
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
:root {
|
|
color: #213547;
|
|
background-color: #ffffff;
|
|
}
|
|
a:hover {
|
|
color: #747bff;
|
|
}
|
|
button {
|
|
background-color: #f9f9f9;
|
|
}
|
|
}
|