fleet/frontend/components/StackedWhiteBoxes/_styles.scss
noahtalerman e3edcc0ed7
Make password reset styles consistent with new global styles. (#120)
The changes include adding sentence casing and updating the styles of the and components.
2020-12-10 14:34:17 -08:00

68 lines
1.1 KiB
SCSS

.stacked-white-boxes {
@include position(absolute, null null null 50%);
transition: opacity 300ms ease-in;
margin: 40px 0 0 -262px;
width: 516px;
&--loading {
opacity: 0;
}
&--loaded {
opacity: 1;
}
&--leaving {
opacity: 0;
}
&__box {
background-color: $white;
border-radius: 10px;
min-height: 360px;
box-sizing: border-box;
padding: 40px;
font-weight: 300;
&-text {
color: $core-black;
font-size: $small;
margin: 40px 0 24px;
}
}
&__header {
width: 100%;
&-text {
font-size: $large;
font-weight: 300;
color: $core-black;
line-height: 32px;
margin-top: 0;
margin-bottom: 0;
}
}
&__back {
text-align: right;
width: 100%;
&-link {
transition: color 150ms ease-in-out;
color: $core-medium-blue-grey;
text-decoration: none;
position: absolute;
top: 10px;
right: 15px;
cursor: pointer;
font-weight: bold;
font-size: 30px;
&:hover {
color: $core-blue;
}
}
}
}