covidassist/src/App.vue

69 lines
1.1 KiB
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>
/* Import Open Sans from Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
2020-03-21 16:00:59 +01:00
h1 {
font-size: 1.2em;
line-height: 1em;
color: #23286B;
2020-03-21 16:00:59 +01:00
}
img {
width: 100%;
height: auto;
}
a {
color: #2779E1;
}
a:visited {
color: #2779E1;
}
p {
color: #333333;
}
2020-03-21 16:00:59 +01:00
button {
background: #23286B;
color: #FFFFFF;
box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
border-radius: 15px;
padding: 0.4em 1.4em;
margin-left: 5%;
margin-right: 5%;
border: none;
2020-03-21 16:00:59 +01:00
font-family: Open Sans,sans-serif;
font-style: normal;
font-weight: normal;
font-size: 0.9em;
2020-03-21 16:00:59 +01:00
}
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>