scrimba
UI Design
Design Project
Challenge 1: My Solution (Completing the Mobile Design)
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

Challenge 1: My Solution (Completing the Mobile Design)
AboutCommentsNotes
Challenge 1: My Solution (Completing the Mobile Design)
Expand for more info
index.css
run
preview
console
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap');

html, body {
margin: 0;
padding: 0;
}

body {
background: #AADFC5;
font-family: 'Montserrat';
height: 100vh;
}

a {
color: #7A4900;
text-decoration: none;
font-weight: bold;
}

.logo {
text-transform: uppercase;
}

header {
display: flex;
padding: 1em;
justify-content: space-between;
}

.menu {
width: 1.5em;
cursor: pointer;
}

ul {
position: fixed;
top: 0;
left: 0;
background: white;
height: 100vh;
width: 100%;
padding: 0;
margin: 0;
list-style: none;
display: none;
place-content: center;
z-index: 1;
}

ul li a {
color: black;
padding: 2em;
display: block;
font-size: 1.4rem;
margin-left: -4em;
}

.exit svg {
width: 1.5em;
position: absolute;
top: 1em;
right: 2em;
cursor: pointer;
}

.active a {
color: #217C4f;
}


/*

- White Space
- Color
- Contrast
- Scale
- Alignment
- Typography
- Visual Hierarchy

*/
Console
/index.html
-9:24