35 lines
437 B
CSS
35 lines
437 B
CSS
|
input {
|
||
|
accent-color: #888;
|
||
|
font-size: 100%;
|
||
|
}
|
||
|
|
||
|
input[type="number"] {
|
||
|
border: 1px solid #888;
|
||
|
border-radius: 4px;
|
||
|
max-width: 50px;
|
||
|
}
|
||
|
|
||
|
input[type="radio"] {
|
||
|
scale: 140%;
|
||
|
}
|
||
|
|
||
|
input[type="checkbox"] {
|
||
|
scale: 120%;
|
||
|
}
|
||
|
|
||
|
input:not([disabled]),
|
||
|
input[type="radio"] + label {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
md-content input {
|
||
|
color: #1b5e20;
|
||
|
}
|
||
|
|
||
|
@media (max-width: 949px) {
|
||
|
.disabled-sm {
|
||
|
pointer-events: none;
|
||
|
color: #888;
|
||
|
}
|
||
|
}
|