Day 186

Another day going through Joe's "First page" tutorial/class...
#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: 150px;
}

.box .content-area {
  padding: 20px;
}

.box .content-area .user-image {
  height: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box .content-area .user-image .circle {
  background: url('https://i.pinimg.com/originals/6b/04/67/6b046799ae9bf594ce190c66ce376d51.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: none;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  position: absolute;
  top: -75px;
  box-shadow: 0 0 41px -17px rgba(84, 88.247, 1);
}

Comments

Popular posts from this blog

Day 1

Day 365 + 1

Day 365 + 2