Skip to content

Commit c833b05

Browse files
committed
Add Features Part.
1 parent 4090483 commit c833b05

File tree

2 files changed

+70
-5
lines changed

2 files changed

+70
-5
lines changed

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

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,3 +427,31 @@
427427
text-align: center;
428428
margin-top: 2.8rem;
429429
}
430+
431+
.plan-details {
432+
font-size: 1.6rem;
433+
line-height: 1.6;
434+
text-align: center;
435+
}
436+
437+
.feature-icon {
438+
color: #e67e22;
439+
height: 3.2rem;
440+
width: 3.2rem;
441+
background-color: #fdf2e9;
442+
margin-bottom: 3.2rem;
443+
padding: 1.6rem;
444+
border-radius: 50%;
445+
}
446+
447+
.feature-title {
448+
font-size: 2.4rem;
449+
color: #333;
450+
font-weight: 700;
451+
margin-bottom: 1.6rem;
452+
}
453+
454+
.feature-text {
455+
font-size: 1.8rem;
456+
line-height: 1.8;
457+
}

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

Lines changed: 42 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ <h2 class="heading-secondary">
431431
</h2>
432432
</div>
433433

434-
<div class="container grid grid--2-cols">
434+
<div class="container grid grid--2-cols margin-bottom-md">
435435
<div class="pricing-plan pricing-plan--starter">
436436
<header class="plan-header">
437437
<p class="plan-name">Starter</p>
@@ -491,11 +491,48 @@ <h2 class="heading-secondary">
491491
</div>
492492
</div>
493493

494+
<div class="container grid">
495+
<aside class="plan-details">
496+
Prices include all applicable taxes. Users can cancel at any time.
497+
Both plans include the following:
498+
</aside>
499+
</div>
500+
494501
<div class="container grid grid--4-cols">
495-
<div class="featured">Feature 1</div>
496-
<div class="featured">Feature 2</div>
497-
<div class="featured">Feature 3</div>
498-
<div class="featured">Feature 4</div>
502+
<div class="feature">
503+
<ion-icon class="feature-icon" name="infinite-outline"></ion-icon>
504+
<p class="feature-title">Never cook again!</p>
505+
<p class="feature-text">
506+
Our subscriptions cover 365 days per year, even including major
507+
holidays.
508+
</p>
509+
</div>
510+
<div class="feature">
511+
<ion-icon class="feature-icon" name="nutrition-outline"></ion-icon>
512+
513+
<p class="feature-title">Local and organic</p>
514+
515+
<p class="feature-text">
516+
Our cooks only use local, fresh, and organic products to prepare
517+
your meals.
518+
</p>
519+
</div>
520+
<div class="feature">
521+
<ion-icon class="feature-icon" name="leaf-outline"></ion-icon>
522+
<p class="feature-title">No waste</p>
523+
<p class="feature-text">
524+
All our partners only use reusable containers to package all your
525+
meals.
526+
</p>
527+
</div>
528+
<div class="feature">
529+
<ion-icon class="feature-icon" name="pause-outline"></ion-icon>
530+
<p class="feature-title">Pause anytime</p>
531+
<p class="feature-text">
532+
Going on vacation? Just pause your subscription, and we refund
533+
unused days.
534+
</p>
535+
</div>
499536
</div>
500537
</section>
501538
</main>

0 commit comments

Comments
 (0)