fleet/frontend/components/forms/RegistrationForm/_styles.scss
noahtalerman 1b23b7b74f
Add style fixes caught during QA. Add favicon. (#119)
Changes include style fixes that were caught during a QA pass.
2020-12-10 13:09:05 -08:00

195 lines
3.5 KiB
SCSS

.user-registration {
display: flex;
justify-content: center;
align-items: stretch;
flex-grow: 1;
margin-top: 24px;
&__container {
@include size(500px auto);
@include position(absolute, 49% 0 null null);
transition: left 300ms ease, opacity 300ms ease;
border-radius: 10px;
background-color: $core-light-blue-grey;
box-sizing: border-box;
padding: 40px;
z-index: 1;
transform: translateY(-50%);
h2 {
font-size: $large;
font-weight: $regular;
text-align: center;
padding: 0 0 16px;
margin: 0;
margin-bottom: 40px;
border-bottom: 1px solid $ui-borders;
}
p {
font-size: $small;
margin: 0 0 8px;
}
&--admin {
left: 0;
top: unquote('max(56%, 480px)');
margin: auto;
}
&--org {
left: calc(100% + 220px);
top: unquote('max(56%, 480px)');
opacity: 0;
}
&--kolide {
left: calc(150% + 220px);
top: unquote('max(56%, 480px)');
opacity: 0;
}
&--confirmation {
left: calc(200% + 220px);
top: unquote('max(56%, 480px)');
opacity: 0;
}
&--complete {
padding: 0;
.user-registration__title {
font-size: 24px;
font-weight: $bold;
color: $core-dark-blue-grey;
padding: 25px 35px;
}
}
}
&__form {
display: flex;
width: 100%;
box-sizing: border-box;
@include breakpoint(tablet) {
transform: translateY(-100px);
}
&--step1-complete {
.user-registration__container--admin {
left: -600px;
opacity: 0;
}
.user-registration__container--org {
left: 0;
margin: auto;
opacity: 1;
}
.user-registration__container--kolide {
left: calc(100% + 220px);
opacity: 0;
}
.user-registration__container--confirmation {
left: calc(150% + 220px);
opacity: 0;
}
}
&--step2-complete {
.user-registration__container--admin {
left: calc(-50% - 600px);
opacity: 0;
}
.user-registration__container--org {
left: -600px;
opacity: 0;
}
.user-registration__container--kolide {
left: 0;
margin: auto;
opacity: 1;
}
.user-registration__container--confirmation {
left: calc(100% + 220px);
opacity: 0;
}
}
&--step3-complete {
.user-registration__container--admin {
left: calc(-100% - 600px);
opacity: 0;
}
.user-registration__container--org {
left: calc(-50% - 600px);
opacity: 0;
}
.user-registration__container--kolide {
left: -600px;
opacity: 0;
}
.user-registration__container--confirmation {
left: 0;
margin: auto;
opacity: 1;
}
}
&::before {
left: auto;
right: 50%;
}
&--step1-active {
&::before {
display: none;
}
}
}
&__description {
font-size: 14px;
font-weight: $regular;
color: $core-dark-blue-grey;
}
&__title {
font-size: 18px;
font-weight: $bold;
color: $core-dark-blue-grey;
margin: 0;
padding: 0;
}
&__field-wrapper {
background-color: $core-light-blue-grey;
box-sizing: border-box;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
.button {
width: 160px;
margin-top: 40px;
}
.registration-fields {
box-sizing: border-box;
width: 100%;
}
}
}