scrimba
Shant Dashjian's 96 Code Reviews of the Scrimba Frontend Career Path Students Projects
Code Review of Alexander's Hometown Homepage
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

Code Review of Alexander's Hometown Homepage
AboutCommentsNotes
Code Review of Alexander's Hometown Homepage
Expand for more info
styles.css
run
preview
console
/**
Palette: https://scrimba.com/links/hometown-palette
RED: #E63946
LIGHT: #F1FAEE
AQUA: #A8DADC
LIGHT BLUE: #457B9D
DARK BLUE: #1D3557

*/

.hero-image {
background-size: cover;
height: 400px;
display: flex;
flex-direction: column;
align-items: center;
}

#town {
background: #00ffe7;
padding: 5px 10px;
border-radius: 5px;
margin: 40px;
}

#slogan {
margin: 10px auto;
background: #00ffe7;
padding: 5px 10px;
border-radius: 5px;
font-size: 16px;
}



body {
margin: 0,0, 0, 20;
text-align: center;
font-family: 'Kanit', sans-serif;
}

#park, #theatre, #sports {
width: 100px;
}

.title-activities {
margin-top: -20px;
padding-top: 30px;
padding-bottom: 40px;
background: #fe621d;
font-size: 20px;
}

.activities {
display: flex;
flex-direction: row;
background: #fe621d;
padding-bottom: 40px;
margin-top: -20px;
margin-bottom: 20px;
justify-content: space-around;
}

#theatre, #sports, #park {
border-radius: 50%;
}

.column {
margin: 0px 125px;
}

.title {
font-weight: bold;
}

.card {
width: 400px;
/*
Challenge:
Replace the two margin properties with a
single margin shorthand.
*/
margin: auto;
padding: 20px;
display: flex;
flex-direction: row;
background: #00cfc1;
color: #2b2839;
border-bottom: 6px solid #d8cefe;
}
.inner-card{
padding: 20px;
}

#mugshot {
max-width: 50%;
height: auto;
border-radius: 10px;
}
Console
/index.html
-7:50