Files
home-works/src/s2-homeworks/hw07/common/c5-SuperSelect/SuperSelect.module.css
2022-09-20 14:10:26 +03:00

31 lines
598 B
CSS

.select {
appearance: none;
width: 165px;
height: 24px;
padding-left: 10px;
color: inherit;
background-color: transparent;
background-image: url('./chevron-down.svg');
background-position: right center;
background-repeat: no-repeat;
border-radius: 2px;
border: 1px solid #C2C2C2;
font-family: 'Montserrat', sans-serif;
font-weight: 400;
font-size: 14px;
cursor: pointer;
}
.select:focus {
outline: none;
}
.option:hover {
transition: all 0.2s ease-in-out;
background: red;
box-shadow: 0 0 10px 100px #fed20f inset;
}