2020-09-04 23:52:05 +00:00
|
|
|
<template>
|
|
|
|
|
<div id="app">
|
2020-09-06 00:44:39 +00:00
|
|
|
<img class="logo" alt="Lenaistenlogo" src="./assets/logo.png" />
|
2020-09-05 16:25:28 +00:00
|
|
|
<BDay />
|
2020-09-04 23:52:05 +00:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2020-09-06 00:44:39 +00:00
|
|
|
import BDay from "./components/BDay.vue";
|
2020-09-04 23:52:05 +00:00
|
|
|
|
|
|
|
|
export default {
|
2020-09-06 00:44:39 +00:00
|
|
|
name: "App",
|
|
|
|
|
|
2020-09-04 23:52:05 +00:00
|
|
|
components: {
|
2020-09-06 00:44:39 +00:00
|
|
|
BDay,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
|
get_id: () => {
|
|
|
|
|
return window.location.pathname.substring(1);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
2020-09-04 23:52:05 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
2020-09-05 16:25:28 +00:00
|
|
|
html {
|
2020-09-06 00:44:39 +00:00
|
|
|
background-image: url("./assets/bg.jpg");
|
|
|
|
|
height: 100%;
|
|
|
|
|
/* overflow:hidden; */
|
2020-09-05 16:25:28 +00:00
|
|
|
}
|
|
|
|
|
|
2020-09-04 23:52:05 +00:00
|
|
|
#app {
|
|
|
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
|
text-align: center;
|
2020-09-06 14:52:05 +00:00
|
|
|
color: #34214f;
|
2020-09-04 23:52:05 +00:00
|
|
|
margin-top: 60px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2020-09-05 16:25:28 +00:00
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
img.logo {
|
|
|
|
|
max-height: 10em;
|
|
|
|
|
}
|
|
|
|
|
</style>
|