Skip to content

Commit 37d8cc6

Browse files
committed
feat: building the Featured-In Section
1 parent a81e15b commit 37d8cc6

File tree

2 files changed

+62
-0
lines changed

2 files changed

+62
-0
lines changed

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

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,35 @@
125125
font-weight: 700;
126126
}
127127

128+
/*************************************/
129+
/* FEATURED IN SECTION */
130+
/*************************************/
131+
132+
.section-featured {
133+
padding: 4.8rem 0 3.2rem 0;
134+
}
135+
136+
.heading-featured-in {
137+
font-size: 1.4rem;
138+
text-transform: uppercase;
139+
letter-spacing: 0.75px;
140+
font-weight: 500;
141+
text-align: center;
142+
margin-bottom: 2.4rem;
143+
color: #888;
144+
}
145+
146+
.logos {
147+
display: flex;
148+
justify-content: space-around;
149+
}
150+
151+
.logos-img {
152+
height: 3.2rem;
153+
filter: brightness(0);
154+
opacity: 50%;
155+
}
156+
128157
/*************************************/
129158
/* HOW IT WORKS SECTION */
130159
/*************************************/

starter/07-Omnifood-Desktop/index.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,39 @@ <h1 class="heading-primary">
9393
</div>
9494
</section>
9595

96+
<section class="section-featured">
97+
<div class="container">
98+
<h2 class="heading-featured-in">As featured in</h2>
99+
<div class="logos">
100+
<img
101+
src="img/logos/techcrunch.png"
102+
alt="Techcrunch logo"
103+
class="logos-img"
104+
/>
105+
<img
106+
src="img/logos/business-insider.png"
107+
alt="Business Inside logo"
108+
class="logos-img"
109+
/>
110+
<img
111+
src="img/logos/the-new-york-times.png"
112+
alt="New York Times logo"
113+
class="logos-img"
114+
/>
115+
<img
116+
src="img/logos/forbes.png"
117+
alt="Forbes logo"
118+
class="logos-img"
119+
/>
120+
<img
121+
src="img/logos/usa-today.png"
122+
alt="USA Today logo"
123+
class="logos-img"
124+
/>
125+
</div>
126+
</div>
127+
</section>
128+
96129
<section class="section-how">
97130
<div class="container">
98131
<span class="subheading">How it works</span>

0 commit comments

Comments
 (0)