avatar-commander-ai / style.css
Danyray101's picture
Create a Ai system that allows a person to control an avatar in real language and make the avatar do different commands and answer questions and other useful things
744a895 verified
raw
history blame contribute delete
602 Bytes
/* Base styles */
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Custom animations */
@keyframes avatar-wave {
0%, 100% { transform: rotate(0deg); }
20%, 60% { transform: rotate(15deg); }
40%, 80% { transform: rotate(-15deg); }
}
.animate-wave {
animation: avatar-wave 1.5s ease infinite;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}