gamebrary/src/styles/_inputs.scss
2019-10-05 14:40:55 -07:00

42 lines
No EOL
731 B
SCSS

input, select {
background: $color-white;
border: 1px solid $color-dark-gray;
border-radius: $border-radius;
height: 32px;
padding: 0 $gp / 2;
width: 100%;
font-size: 12px;
margin-bottom: $gp;
&.small {
height: 20px;
margin: 0;
}
}
.checkbox-group {
display: inline-flex;
> span {
width: 60px;
margin-right: $gp / 2;
> input {
display: none;
}
label {
display: flex;
flex-direction: column;
align-items: center;
&.active {
color: $color-blue;
}
i {
margin-bottom: $gp / 4;
}
}
}
}