This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Netflix-Clone/src/static/sass/components/_modal.scss
2018-11-14 21:44:54 -05:00

49 lines
719 B
SCSS

.modal {
padding-left: 4rem;
padding-top: 2rem;
position: fixed;
z-index: 500;
width: 100%;
top: 30%;
left: 0;
color: white;
height: 44rem;
background: $color-background-modal;
transition: all 1s;
transform: scale(0);
&__title {
font-size: 4rem;
}
&__rating {
font-size: 2rem;
color: $color-green-modal;
}
&__info {
padding-top: 1.6rem;
font-size: 2rem;
}
&__overview {
color: $color-modal-grey;
padding-top: 2rem;
font-size: 2rem;
}
}
.show {
// transform: 50%
transition: transform 1s;
transform: scale(1);
opacity: 1;
}
.hide {
transform: translateY(-100vh);
display: none;
}