Untitled
unknown
plain_text
a year ago
1.2 kB
22
Indexable
/* styles.css */
body {
font-family: Arial, sans-serif;
margin: 20px;
}
.dropdown-container {
position: relative;
display: inline-block;
width: 200px;
}
.dropdown-button {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
background-color: #f9f9f9;
cursor: pointer;
box-sizing: border-box;
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
}
.dropdown-button::after {
content: "\25BC"; /* Unicode character for downward arrow */
font-size: 12px;
margin-left: 10px;
color: #333;
}
.dropdown-options {
display: none;
position: absolute;
width: 100%;
background-color: #fff;
border: 1px solid #ccc;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
box-sizing: border-box;
z-index: 1;
max-height: 150px;
overflow-y: auto;
}
.dropdown-group {
margin-bottom: 20px;
}
.dropdown-group-title {
padding: 10px;
font-weight: bold;
background-color: #f0f0f0;
}
.dropdown-option {
padding: 10px 10px 10px 30px; /* Added left padding */
cursor: pointer;
}
.dropdown-option:hover {
background-color: #f1f1f1;
}
.show {
display: block;
}
Editor is loading...
Leave a Comment