Skip to content

Commit 13bb215

Browse files
committed
Add the featured-in section.
1 parent 34cca21 commit 13bb215

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed

starter/07-Omnifood-Desktop/content/css/style.css

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,34 @@
117117
font-weight: 700;
118118
}
119119

120+
/***************************/
121+
/* FEATURED IN SECTION */
122+
/***************************/
123+
.section-featured {
124+
padding: 4.8rem 0;
125+
}
126+
127+
.heading-featured-in {
128+
font-size: 1.4rem;
129+
text-transform: uppercase;
130+
letter-spacing: 0.75px;
131+
font-weight: 500;
132+
text-align: center;
133+
margin-bottom: 2.4rem;
134+
color: #000;
135+
}
136+
137+
.logos {
138+
display: flex;
139+
justify-content: space-around;
140+
}
141+
142+
.logos img {
143+
height: 3.2rem;
144+
filter: brightness(0);
145+
opacity: 50%;
146+
}
147+
120148
/***************************/
121149
/* HOW IT WORKS SECTION */
122150
/***************************/

starter/07-Omnifood-Desktop/content/index.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,27 @@ <h1 class="heading-primary">
6969
</div>
7070
</div>
7171
</section>
72+
73+
<!-- FEATURED IN SECTION -->
74+
<section class="section-featured">
75+
<div class="container">
76+
<h2 class="heading-featured-in">As featured in</h2>
77+
<div class="logos">
78+
<img src="img/logos/techcrunch.png" alt="Techcrunch logo" />
79+
<img
80+
src="img/logos/business-insider.png"
81+
alt="Business Insider logo"
82+
/>
83+
<img
84+
src="img/logos/the-new-york-times.png"
85+
alt="The New York Times logo"
86+
/>
87+
<img src="img/logos/forbes.png" alt="Forbes logo" />
88+
<img src="img/logos/usa-today.png" alt="USA Today logo" />
89+
</div>
90+
</div>
91+
</section>
92+
7293
<section class="section-how">
7394
<div class="container">
7495
<span class="subheading">How it works</span>

0 commit comments

Comments
 (0)