Day 190

More "First website" class...  Going much more slowly than it should.
#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;
}

.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);
}

.box .content-area .info-section .name {
  font-size: 2rem;
  text-align: center;
}

.box .content-area .info-section .position {
  font-size: 0.8rem;
  font-family: sans-serif;
  color: grey;
  text-align: center;
  margin-bottom: 20px;
}

.box .content-area .contact-section {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.box .content-area .contact-section #follow-button {
  font-family: sans-serif;
  font-size: 0.9rem;
  background: #5458f6;
  border: 1px solid #fff;
  padding: 10px 40px;
  color: white;
  border-radius: 5px;
  margin-bottom: 20px;
  cursor: pointer;
}

.box .content-area .contact-section .email-button {
  font-family: sans-serif;
  font-size: 0.9rem;
  background: white;
  border: 1px solid #f2f2f2;
  padding: 10px 40px;
  color: #5458f7;
  border-radius: 5px;
  margin-bottom: 20px;
  cursor: pointer;
}

Comments

Popular posts from this blog

Day 1

Day 365 + 1

Day 365 + 2