header.vue 718 Bytes
<template>
  <header>
    <div class = "headerBox">
      <div class = "logo_content"> KHU NOTICE</div>
      <img class = "logo" src = "../assets/khlogo.png">
    </div>
  </header>
</template>

<script>
export default {
  name: 'header',
  data () {
    return {
    }
  }
}
</script>

<style>
  header{
    height: 443px;
    background:linear-gradient(131deg,rgb(247,183,66),rgb(252,74,66));
  }
  .headerBox{
    width:1010px;
    height: inherit;
    margin: 0 auto 0 auto;
    position: relative;
  }
  .logo{
    position: absolute;
    right: 50px;
  }
  .logo_content{
    color: white;
    font-family: 'BIGJOHN';
    font-size: 60px;
    display: block;
    position: absolute;
    top:100px;
  }
</style>