Vue

by mahassan

HTML

<div id="app">
 <div>
       <header class="container">
        <section>
            <img src="https://placeimg.com/400/100/arc" alt="logo">
        </section>
        <section>
          Heading 
        </section>
        <section>
            <h3>Call Us</h3>
            <div class="contact__info">
                <sub>Mon - Fri/sub>
                <a href="tel:123" class="contact__info--number">123</a>
            </div>
        </section>
    </header>
    <main>
    <div class="content">
        <h1>
            <span>Lorem Ipsum</span>
        </h1>
        <!-- <p>Rates starting from
            <span>3.65%</span> APR</p> -->
    </div>
</main>
 </div>
</div>

SCSS

.container {
  //display: flex;
  justify-content: flex-end;
  width: 1326px;
  height: 177px;
  margin: 0 auto;
  img {
    width: 302px;
    height: 125px;
  }
  .contact__info {
        text-align: center;
        @media (min-width: 600px) {
        //display: flex;
        align-items: center;
    }
    a {
      //font-size: 32px;
      //font-weight: 900;
    }
    h1 {
      display: inline;
    }
    &--number {
      margin-left: 5px;
    }
  }
  section:nth-child(1) {
    margin-right: auto;
  }
  section:nth-child(2) {
    padding: 0 20px;
  }
}
main{
      background: #394952;
}
.content {
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
  margin:0 auto;

  color: #fff;
  text-align: left;
  h1 {
  }
  span {
    font-weight: 600;
  }
  span,p{
      font-size: 52px;
  }
}

Vue

new Vue({
  el: "#app",
  data: {
  
  },
})