Day 246
My second run-threw of the Build-a-Website course...
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
* {
box-sizing: border-box;
font-family: sans-serif;
}
html, body {
background: #eff2f9;
}
#home {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.box {
background: white;
width: 100%;
max-width: 400px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 41px -17px rgba(84, 88, 247, 1);
}
.box .background-image {
background: url('https://vacationrentalssmithmountainlake.com/wp-content/uploads/2018/01/mountain-lake-1.jpeg');
background-position: center bottom;
background-size: cover;
background-repeat: none;
height: 100px;
}
.box .content-area {
padding: 20px;
}
.box .content-area .user-image {
height: 40px;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
#CodingPhase #TheCodingWay #365CodingPhaseChallenge
**********
* {
box-sizing: border-box;
font-family: sans-serif;
}
html, body {
background: #eff2f9;
}
#home {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.box {
background: white;
width: 100%;
max-width: 400px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 10px 41px -17px rgba(84, 88, 247, 1);
}
.box .background-image {
background: url('https://vacationrentalssmithmountainlake.com/wp-content/uploads/2018/01/mountain-lake-1.jpeg');
background-position: center bottom;
background-size: cover;
background-repeat: none;
height: 100px;
}
.box .content-area {
padding: 20px;
}
.box .content-area .user-image {
height: 40px;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
Comments
Post a Comment