You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
252 lines
5.6 KiB
SCSS
252 lines
5.6 KiB
SCSS
.kickoff {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
main {
|
|
padding-top: 64px;
|
|
height:100vh;
|
|
width: 100%;
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.header {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
.apl-presents {
|
|
max-width: 100px;
|
|
}
|
|
|
|
.sponsored-by-psyonix {
|
|
max-width: 130px;
|
|
}
|
|
}
|
|
|
|
.kickoff-logo {
|
|
max-width: 50%;
|
|
transform: translatey(0px);
|
|
animation: float 6s ease-in-out infinite;
|
|
|
|
img {
|
|
margin-top: -100px;
|
|
}
|
|
|
|
&:after {
|
|
content:"";
|
|
position:absolute;
|
|
width:100%;
|
|
bottom:1px;
|
|
z-index:-1;
|
|
transform:scale(.9);
|
|
}
|
|
}
|
|
|
|
.scroll {
|
|
position: relative;
|
|
|
|
a {
|
|
padding-top: 60px;
|
|
|
|
span {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 50%;
|
|
width: 30px;
|
|
height: 50px;
|
|
margin-left: -15px;
|
|
border: 2px solid #fff;
|
|
border-radius: 50px;
|
|
box-sizing: border-box;
|
|
|
|
&:before {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 50%;
|
|
content: '';
|
|
width: 6px;
|
|
height: 6px;
|
|
margin-left: -3px;
|
|
background-color: #fff;
|
|
border-radius: 100%;
|
|
-webkit-animation: sdb10 2s infinite;
|
|
animation: sdb10 2s infinite;
|
|
box-sizing: border-box;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.details {
|
|
width: 100%;
|
|
min-height: calc(100vh - 64px);
|
|
padding-top: 10rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
|
|
.counter {
|
|
h1 {
|
|
font-size: 3em;
|
|
text-shadow: 0px 0px 15px rgba(white, 100%);
|
|
}
|
|
}
|
|
|
|
.subt {
|
|
margin-top: 5rem;
|
|
width: 100%;
|
|
|
|
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.logo {
|
|
max-width: 500px;
|
|
img {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.info {
|
|
ul {
|
|
li {
|
|
margin: 0.5rem 0;
|
|
letter-spacing: 0.5px;
|
|
line-height: 1.5;
|
|
|
|
&.big {
|
|
font-size: 1.5rem;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.asia {
|
|
margin-bottom: 50px;
|
|
}
|
|
}
|
|
|
|
.trailer {
|
|
margin-top: 5rem;
|
|
width: 1280px;
|
|
height: 720px;
|
|
|
|
iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 10rem;
|
|
width: 100%;
|
|
padding: 2rem 2rem;
|
|
background: lighten($bg-color, 20%);
|
|
text-align: center;
|
|
font-size: 1rem;
|
|
letter-spacing: 0.5px;
|
|
line-height: 1.5;
|
|
}
|
|
}
|
|
}
|
|
|
|
@keyframes float {
|
|
0% {
|
|
transform: translatey(0px);
|
|
}
|
|
50% {
|
|
transform: translatey(-20px);
|
|
}
|
|
100% {
|
|
transform: translatey(0px);
|
|
}
|
|
}
|
|
|
|
@keyframes sdb10 {
|
|
0% {
|
|
transform: translate(0, 0);
|
|
opacity: 0;
|
|
}
|
|
40% {
|
|
opacity: 1;
|
|
}
|
|
80% {
|
|
transform: translate(0, 20px);
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 960px) {
|
|
.kickoff {
|
|
main {
|
|
.container {
|
|
justify-content: space-between;
|
|
.kickoff-logo {
|
|
img {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.details {
|
|
.counter {
|
|
h1 {
|
|
font-size: 2em;
|
|
}
|
|
}
|
|
|
|
.subt {
|
|
.container {
|
|
flex-direction: column;
|
|
}
|
|
|
|
&.asia {
|
|
.container {
|
|
flex-direction: column-reverse;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: 720px) {
|
|
.kickoff {
|
|
main {
|
|
.container {
|
|
.kickoff-logo {
|
|
max-width: 80%;
|
|
}
|
|
}
|
|
}
|
|
.details {
|
|
.counter {
|
|
.h1 {
|
|
font-size: 1em;
|
|
}
|
|
}
|
|
.trailer {
|
|
width: 100%;
|
|
height: 480px;
|
|
}
|
|
}
|
|
}
|
|
}
|