42 lines
835 B
CSS
42 lines
835 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
:root {
|
|
--foreground-rgb: 0, 0, 0;
|
|
--background-start-rgb: 214, 219, 220;
|
|
--background-end-rgb: 255, 255, 255;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--foreground-rgb: 255, 255, 255;
|
|
--background-start-rgb: 0, 0, 0;
|
|
--background-end-rgb: 0, 0, 0;
|
|
}
|
|
}
|
|
.check-box {
|
|
border:2px solid white;
|
|
box-shadow:0 0 0 2px #FE4501;
|
|
appearance:none;
|
|
width:15px;
|
|
height:15px;
|
|
background-color:#fff;
|
|
transition:all ease-in .2s;
|
|
cursor: pointer;
|
|
}
|
|
.check-box:checked{
|
|
background-color:#FE4501;
|
|
transform: scale(1.2);
|
|
border-radius: 2px;
|
|
}
|
|
/* body {
|
|
color: rgb(var(--foreground-rgb));
|
|
background: linear-gradient(
|
|
to bottom,
|
|
transparent,
|
|
rgb(var(--background-end-rgb))
|
|
)
|
|
rgb(var(--background-start-rgb));
|
|
} */
|