first page

This commit is contained in:
2025-05-31 18:20:53 +02:00
parent ff405ebe63
commit 3172ed8d5f
3 changed files with 108 additions and 2 deletions
+27
View File
@@ -0,0 +1,27 @@
<template>
<table class="emphased">
<tr>
<td>Très bien</td>
<td>Bien</td>
<td>Passable</td>
<td>Insuffisant</td>
<td>À rejeter</td>
</tr>
</table>
</template>
<style scoped="true" lang="css">
.emphased {
border: 1px solid #444;
padding: 1em;
margin-top: 2em;
margin-bottom: 2em;
table-layout: fixed;
width: 100%;
border-collapse: collapse;
}
.emphased td {
border: 1px solid;
}
</style>