17 lines
345 B
CSS
17 lines
345 B
CSS
input[type="number"],input[type="date"] {
|
|
-moz-appearance: none;
|
|
-webkit-appearance: none;
|
|
-o-appearance: none;
|
|
-ms-appearance: none;
|
|
appearance: none;
|
|
background: #f8f8f8;
|
|
border-radius: 6px;
|
|
border: solid 1px #e5e5e5;
|
|
color: inherit;
|
|
display: block;
|
|
outline: 0;
|
|
padding: 0 1em;
|
|
text-decoration: none;
|
|
width: 100%;
|
|
height: 3em;
|
|
} |