frontend/Components/ItemSelect/itemSelect.module.css

61 lines
1.1 KiB
CSS
Raw Normal View History

2022-08-26 22:49:44 +03:00
.myselect{
border: none;
2022-08-27 17:41:59 +03:00
width: 240px;
2022-08-27 03:48:28 +03:00
font-size: 14px;
2022-08-27 17:41:59 +03:00
color: #1890FF;
2022-08-26 22:49:44 +03:00
font-weight: 500;
outline: none;
width: inherit;
}
2022-08-27 17:41:59 +03:00
.head{
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 10px;
cursor: pointer;
width: 240px ;
}
.options{
display: flex;
flex-direction: column;
gap:8px
}
.option{
display: flex;
align-items: center;
padding: 10px;
justify-content: right;
color: #0E1A33;
background: #F4F7FD;
width: 100%;
cursor: pointer;
}
.selected{
width: 100%;
display: flex;
align-items: center;
padding: 10px;
justify-content: right;
color: #1890FF;
background: #E6F7FF;
box-shadow: inset -3px 0px 0px #1890FF;
border-right: solid 3px #1890FF;
cursor: pointer;
2022-08-26 22:49:44 +03:00
2022-08-27 17:41:59 +03:00
}
2022-08-26 22:49:44 +03:00
@media screen and (max-width: 1300px) {
.myselect{
2022-08-27 17:41:59 +03:00
font-size: 12px;
2022-08-26 22:49:44 +03:00
}
}
@media screen and (max-width: 900px) {
.myselect{
2022-08-27 17:41:59 +03:00
font-size: 12px;
2022-08-26 22:49:44 +03:00
}
}
@media screen and (max-width: 500px) {
.myselect{
2022-08-27 17:41:59 +03:00
font-size: 10px;
2022-08-26 22:49:44 +03:00
}
}