[frontend] Add description to hoods page
This commit is contained in:
parent
ff7036a188
commit
09318b24b0
|
@ -1,8 +1,14 @@
|
||||||
<!-- <div class="banner">
|
|
||||||
<h1>Discover hoods</h1>
|
|
||||||
</div> -->
|
|
||||||
<app-heading-one [title]="title"></app-heading-one>
|
<app-heading-one [title]="title"></app-heading-one>
|
||||||
<div class="page">
|
<div class="page">
|
||||||
|
<div class="description">
|
||||||
|
<p class="text">
|
||||||
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
|
||||||
|
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
|
||||||
|
veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
|
||||||
|
commodo consequat.
|
||||||
|
</p>
|
||||||
|
<div class="banner"></div>
|
||||||
|
</div>
|
||||||
<mat-form-field class="searchbar">
|
<mat-form-field class="searchbar">
|
||||||
<mat-label> <mat-icon>search</mat-icon> Search for hoods</mat-label>
|
<mat-label> <mat-icon>search</mat-icon> Search for hoods</mat-label>
|
||||||
<input matInput type="search" [(ngModel)]="searchText" autocomplete="off" />
|
<input matInput type="search" [(ngModel)]="searchText" autocomplete="off" />
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
padding-left: 10%;
|
padding-left: 10%;
|
||||||
padding-right: 10%;
|
padding-right: 10%;
|
||||||
margin-bottom: 5%;
|
margin-bottom: 5%;
|
||||||
|
margin-top: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.list {
|
.list {
|
||||||
|
@ -35,3 +36,17 @@ h1 {
|
||||||
background-size: 100%;
|
background-size: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
gap: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text {
|
||||||
|
padding-top: 20px;
|
||||||
|
padding-bottom: 10px;
|
||||||
|
color: gray;
|
||||||
|
font-size: 1.4375rem;
|
||||||
|
line-height: 1.875rem;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue