scrimba
Responsive Design
Taking it to the next level
Styling the navigation for large screens
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 navigation for large screens
AboutCommentsNotes
Styling the navigation for large screens
Expand for more info
css
style.css
run
preview
console
* {box-sizing: border-box;}

body {
margin: 0;
font-family: 'Montserrat', sans-serif;
font-size: 1rem;
color: #404040;
line-height: 1.6;
}


/* ==================
Typography
===================== */

h1, h2, strong {
font-weight: 700;
}

.accent-color {
color: #FFE600;
}


.hero-title {
font-size: 1.5rem;
line-height: 1.4;
margin-bottom: 0;
}

.section-title {
font-size: 1.125rem;
color: #000;
margin-top: 1.25em;
}

/* buttons */

.btn {
padding: .5em 1.75em;
font-weight: 700;
margin-top: .5em;
text-decoration: none;
}

.btn-primary {
background: #FFE600;
color: #000;
justify-self: start;
}


/* ==================
general layout
===================== */

.main-grid {
display: grid;
grid-template-columns: minmax(1em, 1fr) minmax(0px, 500px) minmax(1em, 1fr);
grid-column-gap: 2em;
}

@media (min-width: 600px) {
.main-grid {
grid-template-columns: minmax(1em, 1fr) repeat(3, minmax(150px, 320px)) minmax(1em, 1fr);
}
}

/* navigation */

.header {
background: black;
}

.header-content {
display: flex;
grid-column: 2 / -2;
}

.logo-link {
background-color: #FFE600;
padding-top: 2em;
}

.nav {
position: fixed;
background: #000;
width: 100%;
top: 0;
right: 0;
bottom: 0;
left: 100%;
transform: translateX(0);
transition: transform 250ms;
}

.navigation-open {
transform: translateX(-100%);
}

.nav-list {
display: flex;
list-style: none;
margin: 0;
padding: 0;
height: 100%;
align-items: center;
justify-content: space-around;
flex-direction: column;
}

.nav-link {
color: #fff;
text-decoration: none;
font-size: 3rem;
font-weight: 700;
}

.nav-link:hover,
.nav-link:focus {
color: #FFE600;
}

.close-nav {
border: 0;
background: 0;
color: #FFE600;
font-weight: 700;
font-size: 3rem;
cursor: pointer;
padding: .5em;
position: absolute;
}

.open-nav {
border: 0;
background: 0;
color: #fff;
cursor: pointer;
padding: .5em;
margin-left: auto;
font-size: 1.5em;
}

/* footer */

.footer {
background: #ebebeb;
padding: 4em 0;
text-align: center;

grid-template-areas:
". social ."
". main .";
}

.footer-main,
.social-list {
grid-column: 2 / -2;
}

.footer-logo,
.footer-text,
.footer-fineprint {
opacity: .3;
}

.footer-main {
grid-area: main;
}

.footer-fineprint {
font-size: .75rem;
margin-top: 4em;
}

.social-list {
grid-area: social;
list-style: none;
padding: 0;
margin: 0 0 2em;
display: flex;
justify-content: center;
}

.social-link {
color: #000;
font-size: 1.75rem;
margin: 0 .5em;
}

.social-link:hover {
color: #777;
}

@media (min-width: 600px) {
.footer {
grid-template-areas:
". main main social ."
}

.footer-main {
text-align: left;
}

.social-list {
justify-content: flex-end;
}
}

/* ==================
hero area
===================== */

.hero {
background-image: url(img/hero-bg.jpg);
background-size: cover;
background-position: bottom;
padding: 4em 0;
color: #fff;
}

.hero > * {
grid-column: 2 / -2;
}

@media (min-width: 600px) {

.hero {
padding: 6em 0;
}

.hero > * {
grid-column: 2 / span 2;
}

}


/* ==================
info section
===================== */

.info {
padding: 4em 0;
text-align: center;
}

.col {
grid-column: 2 / -2;
}

@media (min-width: 600px) {
.col {
grid-column: span 1;
}

.col:first-child {
grid-column: 2 / span 1;
}
}
Console
index.html
-2:47