Files
tibi-svelte-starter/src/css/theme/components/forms.less
2022-04-01 22:46:54 +02:00

47 lines
926 B
Plaintext

form {
input,
textarea {
border: 1px solid @secondary;
background: #fff;
color: @on-background;
padding: @space-md;
width: 100%;
max-width: 100%;
border-radius: @space-sm;
transition: all 0.2s ease-in-out;
&[readonly] {
opacity: 0.5;
}
}
textarea {
height: 200px;
}
button {
background: @primary;
color: @on-primary;
padding: @space-md @space-lg;
border: 1px solid @primary;
border-radius: @space-sm;
transition: all 0.2s ease-in-out;
cursor: pointer;
&:hover {
border: 1px solid #fff;
box-shadow: 0 0 0.4rem 0 rgba(0, 0, 0, 0.5);
}
&[disabled] {
opacity: 0.5;
}
}
.error {
background: @error;
color: @on-error;
padding: @space-md;
}
}