Day 253

FINALLY working on the next course!
#CodingPhase #TheCodingWay #365CodingPhaseChallenge

**********

@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700");
@import "reset";

$white: #ffffff;
$darkBlue: #3a4793;
$lightBlue: #25b3ec;
$lightPurple: #9787ee;
$yellow: #ffbf3e;

*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
  font-family: "Roboto";
  box-sizing: border-box;
  color: white;
}

html,
body {
  background: white;
  height: 100%;
}

#home {
  background: url("/img/forestmountain.jpg") center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 40px 15px;
  text-align: center;
  h1 {
    // font-family: "Roboto";
    font-size: 28px;
    font-weight: 100;
    text-transform: uppercase;
  }
}

.btn {
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  margin: 15px 0;
  &.lightBlue {
    font-size: 25px;
    background: $lightBlue;
  }
}

Comments

Popular posts from this blog

Day 1

Day 365 + 1

Day 365 + 2