scrimba
Note at 0:00
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 0:00
AboutCommentsNotes
Note at 0:00
Expand for more info
index.css
run
preview
console
:root {
--wine-red: #C7375F;
--bright-red: #D42D2F;
--dark-green: #344D2F;
--light-green: #77A047;
--gold: #FAC57D;
--snow: #F0F4F7;
}

html, body {
margin: 0;
padding: 0;
}

body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
color: var(--dark-green);
background-color: var(--snow);
font-family: 'Mountains of Christmas', cursive;
background-image: url("https://cdn.pixabay.com/photo/2021/12/02/11/52/christmas-6840309_960_720.png");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
text-shadow: 2px 2px 1px whitesmoke;
}

h1 {
border: 6px dotted white;
background-color: rgba(0, 0, 0, 0.8);
padding: 15px;
border-radius: 5px;
color: whitesmoke;
text-shadow: 5px 5px 3px var(--dark-green);
}

.launchpad {
display: flex;
justify-content: center;
align-items: center;
margin: 2em;
flex-direction: column;
min-width: 100px;
min-height: 100px;
background: var(--gold);
border: 1px solid black;
padding: 1em 2em;
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.crew {
font-size: 30px;
}

button {
font-family: 'Mountains of Christmas', cursive;
padding: 1em 2em;
border: none;
font-size: 1.5em;
background-color: var(--dark-green);
color: var(--snow);
border-radius: 999px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

button:hover {
cursor: pointer;
transform: scale(1.03)
}

.bounce-out-top {
-webkit-animation: bounce-out-top 1.5s both;
animation: bounce-out-top 1.5s both;
}

/* ----------------------------------------------
* Generated by Animista on 2021-12-24 13:11:51
* Licensed under FreeBSD License.
* See http://animista.net/license for more info.
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */

/**
* ----------------------------------------
* animation bounce-out-top
* ----------------------------------------
*/
@-webkit-keyframes bounce-out-top {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
5% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
15% {
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
25% {
-webkit-transform: translateY(-38px);
transform: translateY(-38px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
38% {
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
52% {
-webkit-transform: translateY(-75px);
transform: translateY(-75px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
70% {
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
85% {
opacity: 1;
}
100% {
-webkit-transform: translateY(-800px);
transform: translateY(-800px);
opacity: 0;
}
}
@keyframes bounce-out-top {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
5% {
-webkit-transform: translateY(-30px);
transform: translateY(-30px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
15% {
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
25% {
-webkit-transform: translateY(-38px);
transform: translateY(-38px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
38% {
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
52% {
-webkit-transform: translateY(-75px);
transform: translateY(-75px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
70% {
-webkit-transform: translateY(0);
transform: translateY(0);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
85% {
opacity: 1;
}
100% {
-webkit-transform: translateY(-800px);
transform: translateY(-800px);
opacity: 0;
}
}

/*
Task:
- Write the CSS required to launch Santa and his sleigh. Check out this cool animation generator: https://animista.net/play/exits/ */
Console
/index.html
LIVE