parent
1af748e6f1
commit
1dc47e6b7a
@ -1,22 +1,16 @@
|
||||
<!-- <app-book-menu></app-book-menu> -->
|
||||
|
||||
<h2>{{formattedDate}}</h2>
|
||||
|
||||
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>LUN</th>
|
||||
<th>MAR</th>
|
||||
<th>MER</th>
|
||||
<th>JEU</th>
|
||||
<th>VEN</th>
|
||||
<th>SAM</th>
|
||||
<th>DIM</th>
|
||||
</tr>
|
||||
<th *ngFor="let d of day">
|
||||
{{ d }}
|
||||
</th>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<th *ngFor="let azerty of streaks">
|
||||
{{ azerty }}
|
||||
<th *ngFor="let streak of streaks">
|
||||
{{ streak }}
|
||||
</th>
|
||||
</tr>
|
||||
</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