12345678910111213141516171819202122 |
- input[type="text"],input[type="tel"]{
- line-height: inherit;
- width: 100%;
- height: 36px;
- margin-bottom: 0px;
- padding: 0px 10px 0px 0px;
- border: none;
- border-radius: 0;
- outline: 0;
- background-color: #fff;
- -webkit-appearance: none;
- color: #909090;
- font-size: 14px;
- /*user-select: none;
- -webkit-user-select: none; */
- }
- input:focus{
- background-color: inherit;
- }
- input:active{
- background-color: inherit;
- }
|