app/src/ui/App.vue

52 lines
607 B
Vue

<template>
<div>
<router-view />
</div>
</template>
<style>
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: "Roboto", sans-serif;
font-size: 35px;
background-color: #222;
background-repeat: none;
background-size: cover;
}
a,
a:hover,
a:active,
label {
color: #fff;
text-decoration: none;
}
#app {
color: #fff;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
}
* {
font-size: 15px;
font-weight: 300;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 20px;
font-weight: 500;
color: #fff;
}
</style>