Files
parcoursup/src/pages/home.riot

61 lines
880 B
Plaintext
Raw Normal View History

2023-03-05 13:23:23 +01:00
<home>
2023-03-06 17:09:06 +01:00
<style>
2023-03-10 02:33:02 +01:00
#home {
2023-03-07 21:51:35 +01:00
position: relative;
2023-03-06 17:09:06 +01:00
display: flex;
flex-direction: row;
2023-03-07 21:51:35 +01:00
justify-content: space-around;
2023-03-06 17:09:06 +01:00
}
2023-03-10 02:33:02 +01:00
#home
2023-03-09 11:52:52 +01:00
#right, #left generalytics, #left etablanalytics, #left loc {
2023-03-06 17:09:06 +01:00
box-shadow: 0px 0px 9px 1px black;
background: #7A90A4;
2023-03-07 21:51:35 +01:00
}
2023-03-06 17:09:06 +01:00
2023-03-10 02:33:02 +01:00
#home
2023-03-07 21:51:35 +01:00
#right {
align-self: flex-start;
2023-03-08 01:56:38 +01:00
margin-right: 3vw;
2023-03-06 17:09:06 +01:00
}
2023-03-07 19:09:41 +01:00
2023-03-10 02:33:02 +01:00
#home
2023-03-07 21:51:35 +01:00
#left {
2023-03-07 19:09:41 +01:00
display: flex;
2023-03-07 21:51:35 +01:00
flex-direction: column;
2023-03-07 19:09:41 +01:00
justify-content: center;
2023-03-07 21:51:35 +01:00
align-self: center;
2023-03-07 19:09:41 +01:00
}
2023-03-07 21:51:35 +01:00
2023-03-10 02:33:02 +01:00
#home
2023-03-08 01:56:38 +01:00
#left
generalytics {
2023-03-09 11:52:52 +01:00
margin-bottom: 1.3vw;
margin-top: 1.3vw;
2023-03-08 01:56:38 +01:00
}
2023-03-06 17:09:06 +01:00
</style>
2023-03-10 02:33:02 +01:00
<div id="home">
2023-03-06 17:09:06 +01:00
<div id="right">
<selector />
</div>
<div id="left">
2023-03-09 11:52:52 +01:00
<loc />
2023-03-06 17:09:06 +01:00
<generalytics />
<etablanalytics />
</div>
</div>
2023-03-10 02:33:02 +01:00
<script>
import * as riot from "riot";
import start from "../components/global/api/api.js"
export default {
onMounted() {
start()
}
}
</script>
2023-03-05 13:23:23 +01:00
</home>