Modifs Paul Catégories

This commit is contained in:
Your Name 2022-01-19 15:44:24 +01:00
parent e8a924144a
commit e067433e48
15 changed files with 12618 additions and 34 deletions

12618
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,8 @@
<div class="card" style="width: 18rem;"> <div class="container shadow p-0 mb-5 bg-body rounded rounded m-5 rounded-top " style="width: 18rem;" >
<img class="card-img-top" src="..." alt="Card image cap"> <img class="card-img-top " src="assets/ImagesCategory/{{ categoryData.libelle }}.png" alt="Card image cap">
<div class="card-body"> <div class="card-body rounded-bottom">
<h5 class="card-title">{{ categoryData.libelle }}</h5>
<a href="#" class="btn btn-primary">Go somewhere</a>
<a href="#" class="btn">{{ categoryData.libelle }}</a>
</div> </div>
</div> </div>

View File

@ -0,0 +1,15 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
.card-body{
background-color: #CE0000;
}
.btn{
display: block;
color: #fff;
width: 100%;
font-size: 1.5em;
font-weight: bold;
}

View File

@ -1,3 +1,5 @@
<div class="parent d-flex justify-content-center align-items-center flex-wrap flex-row ">
<div *ngFor="let category of listCategories"> <div *ngFor="let category of listCategories">
<app-card-category [categoryData]="category"></app-card-category> <app-card-category [categoryData]="category"></app-card-category>
</div> </div>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 185 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 145 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 157 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 154 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 165 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

View File

@ -1,3 +1,5 @@
/* You can add global styles to this file, and also import other style files */ /* You can add global styles to this file, and also import other style files */
@import '~bootstrap/scss/bootstrap.scss'; @import '~bootstrap/scss/bootstrap.scss';
// le tilde agit comme un raccourci vers le node_modules // le tilde agit comme un raccourci vers le node_modules
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');