select.css
unknown
css
5 years ago
776 B
24
Indexable
select {
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
outline: 0;
box-shadow: none;
border: 0 !important;
background-image: none;
}
.select {
margin: 1rem;
position: relative;
overflow: hidden;
margin: 0rem 1rem;
align-self: stretch;
}
select {
color: #36d1dc;
font-family: "Poppins", sans-serif;
cursor: pointer;
width: 12rem;
border-radius: 5px;
height: 100%;
}
.select::after {
content: "\25BC";
position: absolute;
top: 0;
right: 0;
padding: 1rem;
background: #36d1dc;
cursor: pointer;
pointer-events: none;
border-radius: 5px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
padding: 1.3rem 1rem;
}
Editor is loading...