2024-01-09 12:10:37 +00:00
|
|
|
/* Write your global styles here, in PostCSS syntax */
|
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-family: "Prompt";
|
|
|
|
}
|
2024-01-09 13:49:22 +00:00
|
|
|
|
|
|
|
html .cet-titlebar {
|
|
|
|
background-color: #ececec !important;
|
|
|
|
color: #202020 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
html .cet-titlebar .cet-control-icon svg {
|
|
|
|
fill: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cet-titlebar .cet-icon {
|
|
|
|
display: none;
|
|
|
|
}
|
2024-01-10 12:02:43 +00:00
|
|
|
|
|
|
|
.indeterminate {
|
|
|
|
background-image: repeating-linear-gradient(
|
|
|
|
90deg,
|
|
|
|
rgb(217 5 89) -1%,
|
|
|
|
rgb(217 5 89) 10%,
|
|
|
|
#d3d3d3 10%,
|
|
|
|
#d3d3d3 90%
|
|
|
|
);
|
|
|
|
background-size: 200%;
|
|
|
|
background-position-x: 15%;
|
|
|
|
animation: progress-loading 5s ease-in-out infinite;
|
|
|
|
}
|
|
|
|
|
2024-01-10 13:50:58 +00:00
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
.indeterminate {
|
|
|
|
background-image: repeating-linear-gradient(
|
|
|
|
90deg,
|
|
|
|
rgb(217 5 89) -1%,
|
|
|
|
rgb(217 5 89) 10%,
|
|
|
|
#535353 10%,
|
|
|
|
#535353 90%
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
html .cet-titlebar .cet-control-icon svg {
|
|
|
|
fill: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
html .cet-titlebar {
|
|
|
|
background-color: #202020 !important;
|
|
|
|
color: #ececec !important;
|
|
|
|
}
|
2024-01-10 12:02:43 +00:00
|
|
|
}
|
2024-01-10 13:50:58 +00:00
|
|
|
|
2024-01-10 12:02:43 +00:00
|
|
|
@keyframes progress-loading {
|
|
|
|
50% {
|
|
|
|
background-position-x: -115%;
|
|
|
|
}
|
|
|
|
}
|