12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <div id="app">
- <HeaderSection />
- <router-view />
- <FooterSection />
- </div>
- </template>
- <script>
- import HeaderSection from '@/components/headerSection'
- import FooterSection from '@/components/footerSection'
- import 'animate.css'
- export default {
- components: {
- HeaderSection,
- FooterSection
- },
- name: 'App'
- }
- </script>
- <style>
- * {
- box-sizing: border-box;
- padding: 0;
- margin: 0;
- }
- #app {
- font-family: "Avenir", Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
- /* margin-top: 60px; */
- }
- .width1200 {
- width: 1200px;
- margin: 0 auto;
- }
- :root {
- --plyr-color-main: #2dc7aa !important;
- }
- </style>
|