Skip to content

Commit c6c4f0f

Browse files
committed
section-7: Features
1 parent 2a53350 commit c6c4f0f

File tree

2 files changed

+78
-5
lines changed

2 files changed

+78
-5
lines changed

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,12 @@
338338

339339
/*** PRICING ***/
340340

341+
.plan-details {
342+
font-size: 1.6rem;
343+
line-height: 1.6;
344+
text-align: center;
345+
}
346+
341347
.plan-header {
342348
margin-bottom: 4.8rem;
343349
text-align: center;
@@ -410,3 +416,27 @@
410416
.section-pricing {
411417
padding: 9.6rem 0;
412418
}
419+
420+
/*** FEATURE ***/
421+
422+
.feature-icon {
423+
background-color: #fdf2e9;
424+
border-radius: 50%;
425+
color: #e67e22;
426+
height: 3.2rem;
427+
margin-bottom: 3.2rem;
428+
padding: 1.6rem;
429+
width: 3.2rem;
430+
}
431+
432+
.feature-text {
433+
font-size: 1.8rem;
434+
line-height: 1.8;
435+
}
436+
437+
.feature-title {
438+
color: #333;
439+
font-size: 2.4rem;
440+
font-weight: 700;
441+
margin-bottom: 1.6rem;
442+
}

starter/07-Omnifood-Desktop/index.html

Lines changed: 48 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ <h2 class="heading-secondary">
341341
</h2>
342342
</div>
343343

344-
<div class="container grid grid--2-cols">
344+
<div class="container grid grid--2-cols margin-bottom-md">
345345
<div class="pricing-plan pricing-plan--starter">
346346
<header class="plan-header">
347347
<p class="plan-name">Starter</p>
@@ -404,11 +404,54 @@ <h2 class="heading-secondary">
404404
</div>
405405
</div>
406406

407+
<div class="container grid">
408+
<aside class="plan-details">
409+
Prices include all applicable taxes. You can cancel at any time. Both plans include the following:
410+
</aside>
411+
</div>
412+
413+
<!-- FEATURES -->
414+
407415
<div class="container grid grid--4-cols">
408-
<div></div>
409-
<div></div>
410-
<div></div>
411-
<div></div>
416+
<div class="feature">
417+
<ion-icon class="feature-icon" name="infinite-outline"></ion-icon>
418+
<p class="feature-title">
419+
Never cook again!
420+
</p>
421+
<p class="feature-text">
422+
Our subscriptions cover 365 days per year, even including major holidays.
423+
</p>
424+
</div>
425+
426+
<div class="feature">
427+
<ion-icon class="feature-icon" name="nutrition-outline"></ion-icon>
428+
<p class="feature-title">
429+
Local and organic
430+
</p>
431+
<p class="feature-text">
432+
Our cooks only use local, fresh, and organic products to prepare your meals.
433+
</p>
434+
</div>
435+
436+
<div class="feature">
437+
<ion-icon class="feature-icon" name="leaf-outline"></ion-icon>
438+
<p class="feature-title">
439+
No waste
440+
</p>
441+
<p class="feature-text">
442+
All our partners only use reusable containers to package all your meals.
443+
</p>
444+
</div>
445+
446+
<div class="feature">
447+
<ion-icon class="feature-icon" name="pause-outline"></ion-icon>
448+
<p class="feature-title">
449+
Pause anytime
450+
</p>
451+
<p class="feature-text">
452+
Going on vacation? Just pause your subscription, and we refund unused days.
453+
</p>
454+
</div>
412455
</div>
413456
</section>
414457
</main>

0 commit comments

Comments
 (0)