64 lines
951 B
Plaintext
64 lines
951 B
Plaintext
<home>
|
|
<style>
|
|
#home {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
margin-top: 2%;
|
|
}
|
|
|
|
#home
|
|
#right, #left generalytics, #left etablanalytics, #left loc {
|
|
box-shadow: 0px 0px 9px 1px black;
|
|
background: #7A90A4;
|
|
}
|
|
|
|
#home
|
|
#right {
|
|
align-self: flex-start;
|
|
margin-right: 3vw;
|
|
}
|
|
|
|
#home
|
|
#left {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-self: center;
|
|
}
|
|
|
|
#home
|
|
#left
|
|
generalytics {
|
|
margin-bottom: 1.3vw;
|
|
margin-top: 1.3vw;
|
|
}
|
|
</style>
|
|
|
|
<div id="home">
|
|
<div id="right">
|
|
<selector />
|
|
</div>
|
|
|
|
<div id="left">
|
|
<loc />
|
|
<generalytics />
|
|
<etablanalytics />
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
import * as riot from "riot";
|
|
import start from "../components/global/api/api.js"
|
|
|
|
export default {
|
|
onMounted() {
|
|
start()
|
|
}
|
|
}
|
|
</script>
|
|
</home>
|