scrimba
Frontend Career Path
Responsive design
Build a Responsive Site
Change font sizes to rem
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

AboutCommentsNotes
Change font sizes to rem
Expand for more info
index.css
run
preview
console
body {
color: #2b283a;
font-family: 'Roboto', sans-serif;
margin: 0;
}

/* ----- TYPOGRAPHY ----- */

/*
Challenge:
- Change all the font-sizes from em to rem:
h1, h2, h3, .subheading, and .btn
*/

h1,
h3 {
margin: 0;
}

h1 {
color: whitesmoke;
font-size: 2.25em;
}

h2 {
color: #451c7a;
font-size: 1.75em;
margin-top: 0;
}

h3 {
font-size: 1.25em;
}

p {
line-height: 23px;
}

.subheading {
display: block;
font-size: 0.56em;
color: #d0aaff;
}

.section-two h2 {
color: inherit;
}

/* ----- LINKS ----- */

a {
color: #ef5839;
text-decoration: underline dotted;
}

a:hover,
a:active {
color: #d4b44c;
}

.btn {
font-size: 1.125em;
font-weight: 500;
text-decoration: none;
display: inline-block;
padding: 0.5em 1em;
margin-right: 0.5em;
margin-bottom: 1em;
border-radius: 4.6px;
}

.btn-dark {
color: whitesmoke;
background: #5f29a3;
}

.btn-mid {
color: #5f29a3;
background: #f0e0ff;
}

.btn-light {
color: #5f29a3;
background: whitesmoke;
}

.btn:hover,
.btn:active {
color: #2b238a;
background-color: #f3e885;
}

/* ----- LAYOUT ----- */

header,
section,
footer {
padding: 2.875em 0;
}

header,
.section-two {
background-color: #5f29a3;
}

.section-two {
color: whitesmoke;
}

.container {
width: 90%;
max-width: 800px;
margin: 0 auto;
}

.main-image {
width: 100%;
display: block;
max-width: 640px;
margin: 0 auto 2em;
}

.section-two-image-container {
display: flex;
justify-content: space-between;
}

.feature-image {
width: 48.8%;
border-radius: 4.6px;
}

footer {
text-align: center;
color: #5f29a3;
}
Console
/index.html
-3:14