scrimba
Your portfolio
Styling the titles and subtitles
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

Styling the titles and subtitles
AboutCommentsNotes
Styling the titles and subtitles
Expand for more info
css
style.css
run
preview
console
*,
*::before,
*::after {
box-sizing: border-box;
}

/* Custom Properties, update these for your own design */

:root {
--ff-primary: 'Source Sans Pro', sans-serif;
--ff-secondary: 'Source Code Pro', monospace;

--fw-reg: 300;
--fw-bold: 900;

--clr-light: #fff;
--clr-dark: #303030;
--clr-accent: #16e0bd;

--fs-h1: 3rem;
--fs-h2: 2.25rem;
--fs-h3: 1.25rem;
--fs-body: 1rem;
}

@media (min-width: 800px) {
:root {
--fs-h1: 4.5rem;
--fs-h2: 3.75rem;
--fs-h3: 1.5rem;
--fs-body: 1.125rem;
}
}

/* General styles */

body {
background: var(--clr-light);
color: var(--clr-dark);
margin: 0;
font-family: var(--ff-primary);
font-size: var(--fs-body);
line-height: 1.6;
}

img {
display: block;
max-width: 100%;
}


/* Typography */

h1,
h2,
h3 {
line-height: 1.1;
margin: 0;
}

h1 { font-size: var(--fs-h1) }
h2 { font-size: var(--fs-h2) }
h3 { font-size: var(--fs-h3) }
























Console
/index.html
-4:14