mirror of
https://github.com/Ai-hack-MAGNUM-OPUS/frontend.git
synced 2024-12-01 14:03:44 +03:00
25 lines
396 B
CSS
25 lines
396 B
CSS
|
.myselect{
|
||
|
border: none;
|
||
|
font-size: 24px;
|
||
|
color: #1C85BF;
|
||
|
font-weight: 500;
|
||
|
outline: none;
|
||
|
width: inherit;
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 1300px) {
|
||
|
.myselect{
|
||
|
font-size: 18px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@media screen and (max-width: 900px) {
|
||
|
.myselect{
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
}
|
||
|
@media screen and (max-width: 500px) {
|
||
|
.myselect{
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
}
|