32 lines
465 B
CSS
32 lines
465 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body {
|
|
@apply text-white;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.navbar {
|
|
background-image: url(/background.png);
|
|
animation-name: scrollbg;
|
|
animation-duration: 120s;
|
|
animation-iteration-count: infinite;
|
|
animation-timing-function: linear;
|
|
}
|
|
|
|
@keyframes scrollbg {
|
|
from {
|
|
background-position: 0 0;
|
|
}
|
|
to {
|
|
background-position: 100% 100%;
|
|
}
|
|
}
|
|
|
|
.dropdown:hover .dropdown-content {
|
|
display: block;
|
|
}
|