34 lines
457 B
CSS
34 lines
457 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"] {
|
|
transform: scale(1.3);
|
|
}
|
|
|
|
input[type="checkbox"] {
|
|
transform: scale(1.2);
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|