Files
parcoursup/src/components/global/etablanalytics/etablanalytics.riot

52 lines
1.0 KiB
Plaintext
Raw Normal View History

2023-03-06 17:09:06 +01:00
<etablanalytics>
2023-03-08 01:56:38 +01:00
<style>
etablanalytics {
width: 65vw;
2023-03-09 11:52:52 +01:00
height: 28vh;
max-height: 28vh;
2023-03-08 01:56:38 +01:00
font-weight: bold;
2023-03-08 12:32:53 +01:00
overflow: auto;
2023-03-08 01:56:38 +01:00
}
2023-03-09 13:43:15 +01:00
etablanalytics
2023-03-09 14:41:05 +01:00
#etab {
2023-03-09 13:43:15 +01:00
font-size: 17px;
color: white;
font-weight: bold;
text-align: center;
width: 100%;
}
etablanalytics
#etab
tr
th {
background: #344D59;
font-size: 17px;
color: white;
font-weight: bold;
text-align: center;
}
etablanalytics
#etab
tr
td {
text-align: center;
font-size: 16px;
color: white;
}
2023-03-08 01:56:38 +01:00
</style>
2023-03-09 14:41:05 +01:00
<div>
<table id="etab">
<tr>
<th>Nom</th>
<th>Ville</th>
<th>Dept</th>
<th>Moyenne</th>
<th>Selectivite</th>
</tr>
</table>
</div>
2023-03-06 17:09:06 +01:00
</etablanalytics>