Colourful DIV Classes With Dark Mode.
/* Base Card Styles */
.category-card {
background: #ffffff;
border-radius: 10px;
margin: 0px;
padding: 0;
position: relative;
overflow: hidden;
border: 2px solid;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
/* Title */
.category-title {
font-weight: bold;
font-size: 16px;
color: #fff;
padding: 10px 20px;
}
/* Profiles Base Style (No Border) */
.profiles,
.profiles-bordered {
display: flex;
flex-wrap: wrap;
gap: 12px;
padding: 12px 15px;
position: relative;
}
/* Bottom Border Only on .profiles-bordered */
.profiles-bordered {
border-bottom: 2px solid #eee;
}
/* Profile Item Text */
.profiles span,
.profiles-bordered span {
font-size: 14px;
color: #222;
white-space: nowrap;
}
/* Color Themes */
.blue { border-color: #90c9f7; }
.blue .category-title { background-color: #90c9f7; }
.teal { border-color: #71c2cf; }
.teal .category-title { background-color: #71c2cf; }
.purple { border-color: #a18edb; }
.purple .category-title { background-color: #a18edb; }
.red { border-color: #eb6e6e; }
.red .category-title { background-color: #eb6e6e; }
.mn { border-color: #32B6CE; }
.mn .category-title { background-color: #32B6CE; }
.aenu {background-color: gray; border-left:1px solid #e9e9e9;border-right:1px solid #e9e9e9;border-bottom:1px solid #e9e9e9; margin: 0px;border-radius: 0 0 10px 10px;padding:10px 10px 10px 10px;}
.category-card .aenu {
background: transparent !important;
}
.category-card,
.category-card.mn {
background: transparent !important;
}
body.dark .aenu,
body.dark .aenu *,
body.darkmode .aenu,
body.darkmode .aenu *,
body[data-theme="dark"] .aenu,
body[data-theme="dark"] .aenu * {
color: #eee !important;
}
textarea{color: #333; background: #FFFAFA; width: 85%; height: 65px; margin: 2px; padding: 4px; font-family: Arial; font-size: 13px; font-weight: bold; border: 1px solid #0088AA; border-radius:2px;}
.notice {
background: #FDFEB8;
border: 1px solid #ecc474;
padding: 4px;
margin: 1px;
color: #000;
/* Fix the empty font-weight */
font-weight: normal;
/* Add bottom border radius */
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
}
<div class="category-card red">
<div class="category-title">
Hello </div>
<div class="aenu">
What's Up </div> </div>