parent
1af748e6f1
commit
1dc47e6b7a
@ -1,22 +1,16 @@
|
|||||||
<!-- <app-book-menu></app-book-menu> -->
|
|
||||||
|
|
||||||
<h2>{{formattedDate}}</h2>
|
<h2>{{formattedDate}}</h2>
|
||||||
|
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<th>LUN</th>
|
<th *ngFor="let d of day">
|
||||||
<th>MAR</th>
|
{{ d }}
|
||||||
<th>MER</th>
|
</th>
|
||||||
<th>JEU</th>
|
|
||||||
<th>VEN</th>
|
|
||||||
<th>SAM</th>
|
|
||||||
<th>DIM</th>
|
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<th *ngFor="let azerty of streaks">
|
<th *ngFor="let streak of streaks">
|
||||||
{{ azerty }}
|
{{ streak }}
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
@ -0,0 +1,33 @@
|
|||||||
|
nav[mat-tab-nav-bar] {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
background-color: #333;
|
||||||
|
padding: 10px 0
|
||||||
|
}
|
||||||
|
|
||||||
|
mat-tab-link, button[mat-button] {
|
||||||
|
flex: 1;
|
||||||
|
text-align: center;
|
||||||
|
color: white;
|
||||||
|
background-color: #444;
|
||||||
|
border: none;
|
||||||
|
padding: 15px;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background-color 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
mat-tab-link:hover, button[mat-button]:hover {
|
||||||
|
background-color: #555;
|
||||||
|
}
|
||||||
|
|
||||||
|
a[mat-menu-item] {
|
||||||
|
text-align: center; /* Centrer le texte des éléments de menu */
|
||||||
|
padding: 10px; /* Espacement interne pour le menu */
|
||||||
|
display: block; /* Faire en sorte que le lien prenne toute la largeur */
|
||||||
|
color: #111; /* Couleur du texte du menu */
|
||||||
|
}
|
||||||
|
|
||||||
|
a[mat-menu-item]:hover {
|
||||||
|
background-color: #555; /* Couleur au survol pour le menu */
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in new issue