iot-settings/src/components/form/input.scss

27 lines
398 B
SCSS

input[type="text"] {
width: 300px;
height: 24px;
color: #fff;
background-color: #e89635;
box-shadow: 0 0 12px #e89635;
font-size: 1em;
padding: 10px 12px;
border-radius: 8px;
&:not(:disabled):focus {
box-shadow: 0 0 20px #e89635;
}
&:disabled {
background-color: #8a4900;
box-shadow: none;
color: #462500;
}
}