jquery-magic-wand / style.css
tatht's picture
gen ra giao diện dùng jquery template đơn giản
55a09ba verified
raw
history blame contribute delete
555 Bytes
/* Custom styles that can't be done with Tailwind */
#demoBox {
transition: all 0.3s ease;
}
/* Animation classes */
.animated-box {
animation: pulse 1.5s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}