free-floating/src/views/Home.vue

69 lines
1.1 KiB
Vue
Raw Normal View History

2019-06-22 17:24:17 +02:00
<template>
<div class="home">
2019-09-05 00:05:54 +02:00
<img class="logo" alt="logo" src="../assets/logo.png" />
<h1><router-link to="/unlock">sblocca</router-link></h1>
<p>
verifica che la bici sia ancora carica 🔋. Se, usando i pulsanti viene
emesso un <em>bip</em> 🔊, procedi con lo sblocco 🔓. Altrimenti utilizza
il
<a
href="https://upload.disroot.org/r/uWcukzZ5#s/84kbXpkxXpX3kR2x1KwyVNX2Us93Zy1tSNC3oZ864="
>metodo manuale</a
>
🛠.
</p>
2019-06-22 17:24:17 +02:00
</div>
</template>
<script>
export default {
2019-09-05 00:05:54 +02:00
name: "home"
2019-06-22 17:24:17 +02:00
};
</script>
2019-09-05 00:05:54 +02:00
<style scoped>
.home {
/* display: flex;
flex-direction: column;
justify-content: center;
align-items: center; */
max-width: 500px;
height: 100%;
padding: 15px;
margin: 0 auto;
}
.logo {
max-width: 100%;
width: 100%;
height: auto;
}
/* img {
max-width: 100%;
} */
h1 {
font-family: "syne", serif;
font-weight: 700;
text-transform: uppercase;
padding: 15px;
border: 3px solid black;
cursor: pointer;
text-align: center;
}
h1 a {
color: black;
text-decoration: none;
}
p a {
color: black;
}
p a:hover {
color: black;
}
</style>