You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Vestride_Shuffle/docs/_scss/global-rules/_forms.scss

41 lines
598 B
SCSS

.textfield {
-webkit-appearance: none;
box-sizing: border-box;
width: 100%;
border: 2px solid $gray60;
border-radius: 4px;
padding: 0.5em;
font-size: 1rem;
color: $gray20;
transition: 0.15s;
&::placeholder {
color: $gray60;
transition: 0.15s;
}
&:hover {
outline-width: 0;
color: $gray30;
border-color: $gray30;
&::placeholder {
color: $gray30;
}
}
&:focus {
outline-width: 0;
// color: $gray20;
border-color: $gray20;
&::placeholder {
color: $gray20;
}
}
}
.textfield--large {
font-size: 1.125em;
}