scrimba
Your portfolio
Setting up the intro section
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

Setting up the intro section
AboutCommentsNotes
Setting up the intro section
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%;
}

strong { font-weight: var(--fw-bold) }

/* 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) }


.section__title {
margin-bottom: .25em;
}

.section__title--intro {
font-weight: var(--fw-reg);
}

.section__title--intro strong {
display: block;
}

.section__subtitle {
margin: 0;
font-size: var(--fs-h3);
}

.section__subtitle--intro,
.section__subtitle--about {
background: var(--clr-accent);
font-family: var(--ff-secondary);
}




















Console
/index.html
-12:15