dxn1-crypto-nexus / style.css
dodey917's picture
I want you to build a bule background animation the animation is a blue dot that connect to one another showing wire but when the blue dot come together it will a DND imeage shoe when cell combined, and this website is all abot crypto project Name: DXN
241d839 verified
raw
history blame contribute delete
862 Bytes
/* Custom styles for DXN1 Crypto Nexus */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #1f2937;
}
::-webkit-scrollbar-thumb {
background: #3b82f6;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #2563eb;
}
/* Glow effect for interactive elements */
.glow-on-hover:hover {
box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}
/* Animation for loading states */
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.pulse-animation {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}