You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.3 KiB
70 lines
1.3 KiB
.App { |
|
text-align: center; |
|
|
|
} |
|
input::-webkit-outer-spin-button, |
|
input::-webkit-inner-spin-button { |
|
-webkit-appearance: none; |
|
} |
|
/* *{ |
|
transition: all 0.3s; |
|
} */ |
|
.rtl{ |
|
direction: rtl; |
|
} |
|
.ltr{ |
|
direction: ltr; |
|
} |
|
/* width */ |
|
::-webkit-scrollbar { |
|
width: 5px; |
|
background: #dbdbdb; |
|
border-radius: 20px; |
|
} |
|
|
|
@media only screen and (max-width: 999px) { |
|
::-webkit-scrollbar { |
|
width: 0px !important; |
|
background: transparent; |
|
} |
|
::-webkit-scrollbar-thumb { |
|
background: transparent !important; |
|
} |
|
} |
|
|
|
/* Track */ |
|
::-webkit-scrollbar-track { |
|
border-radius: 20px; |
|
} |
|
|
|
/* Handle */ |
|
::-webkit-scrollbar-thumb { |
|
background: #df1452; |
|
border-radius: 20px; |
|
} |
|
|
|
/* Handle on hover */ |
|
::-webkit-scrollbar-thumb:hover { |
|
background: #b30000; |
|
} |
|
select { |
|
-webkit-appearance: none; |
|
-moz-appearance: none; |
|
background: transparent; |
|
background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='30' viewBox='0 0 24 24' width='30' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z' fill='gray' /><path d='M0 0h24v24H0z' fill='none'/></svg>"); |
|
background-repeat: no-repeat; |
|
background-position-x: 1%; |
|
background-position-y: 50%; |
|
border: 1px solid #dfdfdf; |
|
border-radius: 2px; |
|
/* margin-right: 2rem; */ |
|
padding: 1rem; |
|
padding-right: 2rem; |
|
cursor: pointer; |
|
} |
|
option { |
|
color:#404040 |
|
} |
|
select:focus{ |
|
color:#404040 |
|
} |