This repository has been archived on 2021-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
eltelive/eltelive-new/src/App.vue
2021-06-19 02:41:16 +02:00

44 lines
725 B
Vue

<template>
<div id="app">
<div class="nav-router">
<NavBar></NavBar>
<router-view/>
</div>
<div><Footer></Footer></div>
</div>
</template>
<style lang="scss">
#app {
font-family: "Avenir",Arial, Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing : grayscale;
position:relative;
padding-bottom: 60px;
color: #2c3e50;
}
#nav{
padding: 30px;
a{
font-weight: bold;
color: #2c3e50;
&.router-link-exact-active{
color: #42b983;
}
}
}
h1 {
color: rgb(53, 114, 210);
font-weight: bold;
letter-spacing: 4px;
text-transform: uppercase;
margin-bottom: 20px;
font-size: 3rem;
}
.nav-router{
padding-bottom: 2%;
}
</style>