home.component.html 1.03 KiB
<body>
  <mat-grid-list cols="4" rowHeight="45px">
    <nav>
    <a><mat-grid-tile
        *ngFor="let tile of tilesTonaliteMed"
        [colspan]="tile.cols"
        [rowspan]="tile.rows"
        [style.background]="tile.color"
        [style.color]="tile.textColor"
        [style.border]="tile.border"
        (mouseenter)="setColorHover(tile)"
        (mouseleave)="setColorHover(tile)"
      <strong>{{tile.text}}</strong>
    </mat-grid-tile></a></nav>
  </mat-grid-list>
  <mat-grid-list cols="5" rowHeight="45px">
    <nav>
    <a><mat-grid-tile
        *ngFor="let tile of tilesThemeRec"
        [colspan]="tile.cols"
        [rowspan]="tile.rows"
        [style.background]="tile.color"
        [style.color]="tile.textColor"
        [style.border]="tile.border"
        (mouseenter)="setColorHover(tile)"
        (mouseleave)="setColorHover(tile)"
      <strong>{{tile.text}}</strong>
    </mat-grid-tile></a></nav>
  </mat-grid-list>
</body>
<!-- To do
    Add some content (some text and features maybe)
-->