38 lines
617 B
SCSS
38 lines
617 B
SCSS
@import "red-variables";
|
|
|
|
.red-input-group {
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 5px;
|
|
margin-bottom: 8px;
|
|
|
|
label {
|
|
height: 14px;
|
|
opacity: 0.6;
|
|
color: $grey-1;
|
|
font-size: 11px;
|
|
font-weight: 500;
|
|
letter-spacing: 0;
|
|
line-height: 14px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
input {
|
|
box-sizing: border-box;
|
|
padding-left: 11px;
|
|
padding-right: 11px;
|
|
height: 34px;
|
|
width: 300px;
|
|
border: 1px solid $grey-3;
|
|
opacity: 0.4;
|
|
border-radius: 2px;
|
|
background-color: #FFFFFF;
|
|
outline: none;
|
|
|
|
&:focus {
|
|
border-color: $grey-1;
|
|
}
|
|
}
|
|
}
|