App.vue 740 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <div id="app">
  3. <HeaderSection />
  4. <router-view />
  5. <FooterSection />
  6. </div>
  7. </template>
  8. <script>
  9. import HeaderSection from '@/components/headerSection'
  10. import FooterSection from '@/components/footerSection'
  11. import 'animate.css'
  12. export default {
  13. components: {
  14. HeaderSection,
  15. FooterSection
  16. },
  17. name: 'App'
  18. }
  19. </script>
  20. <style>
  21. * {
  22. box-sizing: border-box;
  23. padding: 0;
  24. margin: 0;
  25. }
  26. #app {
  27. font-family: "Avenir", Helvetica, Arial, sans-serif;
  28. -webkit-font-smoothing: antialiased;
  29. -moz-osx-font-smoothing: grayscale;
  30. text-align: center;
  31. color: #2c3e50;
  32. /* margin-top: 60px; */
  33. }
  34. .width1200 {
  35. width: 1200px;
  36. margin: 0 auto;
  37. }
  38. :root {
  39. --plyr-color-main: #2dc7aa !important;
  40. }
  41. </style>