covidassist/src/App.vue

57 lines
882 B
Vue
Raw Normal View History

2020-03-21 15:10:52 +01:00
<template>
<div id="app">
2020-03-21 16:00:59 +01:00
<!-- <div id="nav">
2020-03-21 15:16:42 +01:00
<router-link to="/">Home</router-link> |
<router-link to="/about">About</router-link>
2020-03-21 16:00:59 +01:00
</div> -->
2020-03-21 15:16:42 +01:00
<router-view/>
2020-03-21 15:10:52 +01:00
</div>
</template>
<style>
2020-03-21 16:00:59 +01:00
h1 {
font-size: 1.2em;
line-height: 1em;
}
img {
width: 100%;
height: auto;
}
a {
color: #2779E1;
}
a:visited {
color: #2779E1;
}
button {
background: #23286B;
box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
border-radius: 20px;
font-family: Open Sans,sans-serif;
font-style: normal;
font-weight: normal;
font-size: 1em;
padding: 0.7em 1em;
color: #FFFFFF;
}
2020-03-21 16:19:14 +01:00
button.alert {
background-color: #E94A47;
}
2020-03-21 16:00:59 +01:00
body {
background-color: #FCF7F8;
color: #0B2545;
font-family: Zilla Slab;
font-style: normal;
font-weight: normal;
font-size: 30px;
}
2020-03-21 15:10:52 +01:00
</style>