basscss-addons
Version:
Optional modules to extend Basscss
47 lines (42 loc) • 775 B
CSS
/* Basscss Forms */
.label {
font-size: .875rem;
font-weight: bold;
display: block;
margin-bottom: .5rem;
}
.input {
font-family: inherit;
font-size: inherit;
display: block;
width: 100%;
height: 2.5rem;
padding: .5rem;
margin-bottom: 1rem;
border: 1px solid #ccc;
border-radius: 3px;
box-sizing: border-box;
}
.select {
font-family: inherit;
font-size: inherit;
display: block;
width: 100%;
height: 2.5rem;
padding: .5rem;
margin-bottom: 1rem;
border: 1px solid #ccc;
border-radius: 3px;
box-sizing: border-box;
}
.textarea {
font-family: inherit;
font-size: inherit;
display: block;
width: 100%;
padding: .5rem;
margin-bottom: 1rem;
border: 1px solid #ccc;
border-radius: 3px;
box-sizing: border-box;
}