22/invite/style.scss

87 lines
1.5 KiB
SCSS
Raw Normal View History

2017-07-20 21:15:03 +03:00
$foreground: #FFFFFF;
$background: #000000;
2017-07-20 23:30:58 +03:00
2017-07-21 00:13:21 +03:00
$animation-length: 4s;
$animation-delay: $animation-length - 1.5;
$slide-count: 5;
2017-07-20 23:30:58 +03:00
2017-07-20 21:15:03 +03:00
* {
box-sizing: border-box;
}
body {
justify-content: center;
align-items: center;
background: $background;
color: $foreground;
font-family: Sans-Serif;
margin:0;
padding:0;
overflow:hidden;
2017-07-21 00:13:21 +03:00
animation: colorchange 10s alternate infinite;
2017-07-20 21:15:03 +03:00
}
.container {
height:100vh;
width: 100vw;
2017-07-20 23:30:58 +03:00
2017-07-21 00:13:21 +03:00
@for $child from 0 to $slide-count - 1 {
2017-07-20 23:30:58 +03:00
>:nth-child(#{$child+1}) {
animation-delay: $animation-delay*$child;
animation-duration: $animation-length;
2017-07-21 00:13:21 +03:00
animation-name: slide-in-out;
2017-07-20 23:30:58 +03:00
animation-fill-mode: both;
}
2017-07-20 21:15:03 +03:00
}
2017-07-21 00:13:21 +03:00
>:nth-child(#{$slide-count}) {
animation-delay: $animation-delay* ($slide-count - 1);
animation-duration: $animation-length;
animation-name: slide-in;
animation-fill-mode: both;
}
2017-07-20 21:15:03 +03:00
}
.slide {
position: absolute;
height:100vh;
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
2017-07-21 00:13:21 +03:00
flex-direction: column;
2017-07-20 21:15:03 +03:00
}
2017-07-21 00:13:21 +03:00
@keyframes slide-in-out {
2017-07-20 21:15:03 +03:00
0% {
2017-07-21 00:13:21 +03:00
transform: translateY(50px);
2017-07-20 21:15:03 +03:00
opacity: 0;
}
2017-07-21 00:13:21 +03:00
30%, 60% {
2017-07-20 23:30:58 +03:00
transform: translateY(0);
2017-07-20 21:15:03 +03:00
opacity: 1;
}
2017-07-20 23:30:58 +03:00
2017-07-20 21:15:03 +03:00
100% {
2017-07-20 23:30:58 +03:00
transform: translateY(-50px);
2017-07-20 21:15:03 +03:00
opacity: 0;
}
}
2017-07-21 00:13:21 +03:00
@keyframes slide-in {
0% {
transform: translateY(50px);
opacity: 0;
}
30%, 100% {
transform: translateY(0);
opacity: 1;
}
}
@keyframes colorchange {
0% {background: #002b4a;}
50% {background: #01004b;}
100% {background: #30004b;}
}