27 lines
358 B
CSS
27 lines
358 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
html,
|
|
body {
|
|
background-color: #0a0a0a;
|
|
color-scheme: dark;
|
|
height: 100%;
|
|
}
|
|
|
|
#avatar {
|
|
transition: transform 0.5s linear;
|
|
}
|
|
|
|
#avatar:hover {
|
|
animation: rotate 1s linear infinite;
|
|
}
|
|
|
|
@keyframes rotate {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|