mirror of
https://github.com/romancm/gamebrary
synced 2024-12-21 00:33:05 +00:00
42 lines
No EOL
731 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
} |