dylanmcleod
11/15/2015 - 10:31 PM

Background Image + Gradient

Background Image + Gradient

.bg {
  width: 100%;
  height: 100%;
  background: url("bg.jpg") center center no-repeat;
  background-size: cover;
}

.bg:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(to bottom right, #002f4b, #dc4225);
  opacity: .6;
}