scratch-www/src/components/join-flow/join-flow-steps.scss

104 lines
1.8 KiB
SCSS
Raw Normal View History

@import "../../colors";
@import "../../frameless";
.join-flow-input {
width: 100%;
height: 2.75rem;
border-radius: .5rem;
background-color: $ui-white;
margin-bottom: .5rem;
&:focus {
box-shadow: 0 0 0 .25rem $ui-blue-25percent;
}
}
2019-08-01 15:40:46 -04:00
.join-flow-input-tall {
height: 3rem;
}
.join-flow-input-title {
font-weight: bold;
margin-bottom: .5rem;
}
.join-flow-instructions {
font-size: .875rem;
font-weight: bold;
line-height: 1.37500rem;
margin-bottom: 1rem;
text-align: center;
}
.validation-full-width-input {
transform: translate(21.5625rem, 0);
}
.validation-birthdate-input {
transform: translate(8.75rem, .25rem);
width: 7.25rem;
}
@media #{$intermediate-and-smaller} {
.validation-full-width-input {
transform: unset;
margin-bottom: .75rem;
}
.validation-birthdate-input {
transform: unset;
width: 8rem;
}
}
.select .join-flow-select-month {
2019-07-17 11:47:32 -04:00
width: 9.125rem;
margin-right: .5rem;
2019-07-17 11:47:32 -04:00
}
.select .join-flow-select-country {
width: 100%;
margin: 0 auto;
2019-07-17 11:47:32 -04:00
}
.join-flow-password-section {
margin-top: 1.125rem;
}
2019-07-17 11:47:32 -04:00
.birthdate-select-row {
display: flex;
margin: 0 auto;
}
.join-flow-gender-step {
height: 27.375rem;
2019-07-26 14:12:43 -04:00
padding-top: 3rem;
}
.gender-radio-row {
transition: all .125s ease;
width: 20.875rem;
height: 2.85rem;
background-color: $ui-gray;
border-radius: .5rem;
margin-bottom: 0.375rem;
padding-left: 0.8125rem;
display: flex;
align-items: center;
}
.gender-radio-row-selected {
transition: all .125s ease;
background-color: $ui-blue-25percent;
}
.join-flow-next-button-arrow {
width: 2rem;
height: 2rem;
margin-left: .5rem;
}
2019-08-01 15:40:46 -04:00
.modal-inner-content-email {
padding-top: 2.9rem;
}