infojune.old/src/App.vue

62 lines
1.1 KiB
Vue
Raw Normal View History

2020-05-24 19:37:39 +02:00
2020-02-09 19:02:08 +01:00
<template>
<div id="app">
2020-05-28 19:08:14 +02:00
<header>
2020-07-11 10:36:55 +02:00
<a class="simple" href="/"><img width="80px" src="./assets/juneland.svg" alt="infojune"></a><h2>Infojune</h2>
2020-05-31 18:34:47 +02:00
</header>
<router-view></router-view>
2020-08-15 11:28:34 +02:00
<footer><a class="button" href="/don">DONNER A INFOJUNE.FR</a> Crée et hébergé par <a class="link" href="https://lelibreauquotidien.fr">llaq</a> - <a class="link" href="https://git.p2p.legal/llaq/infojune">Disponible sous CC-BY-NC-SA</a></footer>
2020-02-09 19:02:08 +01:00
</div>
</template>
<script>
export default {
name: 'app',
components: {
},
data: function(){
return{
}
2020-02-09 19:02:08 +01:00
}
}
</script>
<style>
2020-06-10 18:43:13 +02:00
body{
height:100%;
position: relative;
}
2020-05-24 19:37:39 +02:00
footer{
2020-05-30 11:50:27 +02:00
position: absolute;
bottom: 0;
2020-06-10 18:43:13 +02:00
height:1px;
2020-05-30 11:50:27 +02:00
}
header{
display: flex;
2020-05-31 18:44:06 +02:00
flex-direction: row;
2020-05-30 11:50:27 +02:00
align-items:center;
justify-content: center;
2020-05-24 19:37:39 +02:00
}
2020-02-09 19:02:08 +01:00
#app {
display:flex;
flex-direction: column;
2020-05-30 11:50:27 +02:00
min-height: 100%;
}
.col{
display: flex;
flex-direction: row;
2020-02-09 19:02:08 +01:00
}
2020-05-30 11:50:27 +02:00
@media only screen and (max-width: 460px) {
2020-05-24 19:37:39 +02:00
footer{
2020-05-30 11:50:27 +02:00
display: flex;
flex-direction: row;
align-items:center;
justify-content: center;
flex-wrap: wrap;
2020-05-24 19:37:39 +02:00
2020-05-30 11:50:27 +02:00
}
2020-02-09 19:02:08 +01:00
}
2020-05-30 11:50:27 +02:00
2020-02-09 19:02:08 +01:00
</style>