mycsslab
Version:
MyCSSLab Quantum v3.0 - Revolutionary CSS framework with AI-powered intelligence, holographic UI, neural networks, and quantum effects
36 lines (30 loc) • 562 B
CSS
/**
* FluxCSS Alert Components
* Alert and notification components
*/
.my-alert {
padding: 1rem;
border-radius: 0.375rem;
border: 1px solid;
margin-bottom: 1rem;
}
.my-alert-success {
background: #f0fdf4;
border-color: #22c55e;
color: #166534;
}
.my-alert-warning {
background: #fffbeb;
border-color: #f59e0b;
color: #92400e;
}
.my-alert-error {
background: #fef2f2;
border-color: #ef4444;
color: #991b1b;
}
.my-alert-info {
background: #f0f9ff;
border-color: #06b6d4;
color: #0e7490;
}