ildi-wp/dev/scss/elements/_inputs.scss

35 lines
537 B
SCSS
Raw Normal View History

2018-04-24 20:41:34 -05:00
.select-wrapper,
textarea,
[type="email"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"] {
2018-08-10 15:08:34 -05:00
border-width: 1px;
border-style: solid;
border-radius: 0;
border-color: $gray-dark;
background-color: $white;
2018-04-24 20:41:34 -05:00
padding: 8px;
width: 100%;
}
2018-08-10 15:08:34 -05:00
[type="submit"] {
border-color: $gray-dark;
background-color: $white;
padding: 8px;
}
2018-04-24 20:41:34 -05:00
.select-wrapper {
padding: 7px 6px 6px;
width: 100%;
select {
outline-offset: 6px;
border: 0;
background: transparent;
padding: 6px 0;
width: 100%;
}
}