Modifs Paul Catégories
12618
package-lock.json
generated
@ -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>
|
@ -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;
|
||||||
|
}
|
@ -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>
|
BIN
src/assets/ImagesCategory/Americain.png
Normal file
After Width: | Height: | Size: 138 KiB |
BIN
src/assets/ImagesCategory/Boulangerie.png
Normal file
After Width: | Height: | Size: 145 KiB |
BIN
src/assets/ImagesCategory/Crêperie.png
Normal file
After Width: | Height: | Size: 185 KiB |
BIN
src/assets/ImagesCategory/Hamburger.png
Normal file
After Width: | Height: | Size: 145 KiB |
BIN
src/assets/ImagesCategory/Kebab.png
Normal file
After Width: | Height: | Size: 157 KiB |
BIN
src/assets/ImagesCategory/Pizza.png
Normal file
After Width: | Height: | Size: 154 KiB |
BIN
src/assets/ImagesCategory/Supermarché.png
Normal file
After Width: | Height: | Size: 165 KiB |
BIN
src/assets/ImagesCategory/Sushis.png
Normal file
After Width: | Height: | Size: 128 KiB |
BIN
src/assets/ImagesCategory/Thaï.png
Normal file
After Width: | Height: | Size: 159 KiB |
BIN
src/assets/ImagesCategory/Vietnamien.png
Normal file
After Width: | Height: | Size: 162 KiB |
@ -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');
|
||||||
|