22 lines
307 B
Vue
22 lines
307 B
Vue
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<style>
|
|
* {
|
|
font-family: 'Courier New', Courier, monospace;
|
|
}
|
|
|
|
html {
|
|
background-image: radial-gradient(#23aae3e2, #222222);
|
|
background-repeat: no-repeat;
|
|
background-attachment: fixed;
|
|
|
|
}
|
|
|
|
body {
|
|
font-size: 18px;
|
|
margin: 0;
|
|
}
|
|
</style>
|