scrimba
HTML & CSS
Build a Space Exploration Site
Choose a color palette from an image
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

To see this lesson you need to be logged in. Joining Scrimba is free and gives you access to 20+ courses.Sign up
Choose a color palette from an image
AboutCommentsNotes
Choose a color palette from an image
Expand for more info
styles.css
run
preview
console
body {
color: white;
background-image: url("images/galaxy.webp");
background-size: cover;
text-align: center;
font-family: 'Orbitron', sans-serif;
}

#main-logo {
width: 100px;
}

.btn {
padding: 6px 12px;
background: white;
border: none;
font-family: 'Orbitron', sans-serif;
}

.underline {
border-bottom: 4px solid white;
}
Console
/index.html
-2:51