mirror of
https://github.com/Zagrios/bs-manager.git
synced 2026-07-03 14:08:25 +02:00
45 lines
714 B
CSS
45 lines
714 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
html {
|
|
font-family: acumin-pro, sans-serif;
|
|
}
|
|
|
|
html.dark{
|
|
background-color: #202225;
|
|
}
|
|
|
|
}
|
|
|
|
*{
|
|
user-select: none;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 4px !important;
|
|
padding: 0;
|
|
margin: 0;
|
|
display: inline;
|
|
}
|
|
|
|
.download-progress{
|
|
background-size: 500% !important;
|
|
animation: rainbow 2s linear 0s infinite;
|
|
}
|
|
|
|
.spin-loading{
|
|
animation: spin-loading 2s cubic-bezier(.46,-0.55,.49,1.52) 0s forwards infinite;
|
|
}
|
|
|
|
@keyframes spin-loading{
|
|
0%{ transform: rotate(-360deg); }
|
|
50%{ transform: rotate(-360deg); }
|
|
}
|
|
|
|
@keyframes rainbow {
|
|
0% { background-position: 84% 0 }
|
|
100% { background-position: 0 0% }
|
|
}
|