scrimba
7 CSS Challenges
Introduction - CSS Challenge 6 - Animated One-Page Site
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

Introduction - CSS Challenge 6 - Animated One-Page Site
AboutCommentsNotes
Introduction - CSS Challenge 6 - Animated One-Page Site
Expand for more info
index.css
run
preview
console
/* DON'T TOUCH THIS! */
body, html {
margin: 0;
padding: 0;
}

body {
font-family: Montserrat, sans-serif;
text-align: center;
}

.section {
margin: 5vh 5vw;
padding: 3vh 3vw;
}

.section-title {
font-size: 3em;
font-weight: 800;
text-transform: uppercase;
color: #267530;
}

#title-section {
margin: 0;
padding-right: 0;
padding-left: 0;
padding-top: 1vh;
padding-bottom: 1vh;
background: #92e1f7;
width: 100%;
font-size: 2em;
text-transform: uppercase;
}

#hero-section {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
background: url(https://komonews.com/resources/media/b7298a0f-4fa6-4f17-9aed-e8073f100abc-large16x9_seattle_skyline_challenge_143.jpg?1563284834048);
background-size: cover;
color: white;
font-size: 3em;
font-weight: 800;
min-height: 60vh;
width: 100%;
padding: 0;
}

#about-us-section {
height: 30vh;
}
#footer-section {
margin: 0;
background: #404040;
color: white;
font-weight: 800;
width: 100%;
padding-top: 4vh;
padding-right: 0;
padding-bottom: 4vh;
padding-left: 0;
height: 10vh;
}
/* DON'T TOUCH THIS! */

/* Your goal is to animate a one-page side, gradually bringing in all the components of the page using animations. At first, the header should slide and fade in from the left, followed by the hero section scaling up, the about us section expanding and fading in from the top, and finally, the footer section expanding and fading in from the left. There should be some delay between the animations, but they should still overlap for the most part. The page elements shouldn't be seen until their animations are played. Good luck!
*/
Console
/index.html
-2:26