bismillahcss
Version:
The next-gen utility-first CSS framework for modern, futuristic web development.
30 lines (25 loc) • 636 B
CSS
/* ============================= */
/* ⚠️ BismillahCSS - Alerts */
/* ============================= */
/* ⚡ Basic Alert */
.bismillah-alert {
padding: 15px;
border-radius: var(--border-radius);
font-size: 1rem;
margin-bottom: 1rem;
}
/* ✅ Success Alert */
.bismillah-alert-success {
background-color: #2ecc71;
color: white;
}
/* ⚠️ Warning Alert */
.bismillah-alert-warning {
background-color: #f39c12;
color: white;
}
/* ❌ Danger Alert */
.bismillah-alert-danger {
background-color: var(--accent-color);
color: white;
}