Skip to content

Commit b1ba198

Browse files
committed
Styled the progressive web app overview slide.
1 parent 77d4129 commit b1ba198

File tree

2 files changed

+50
-7
lines changed

2 files changed

+50
-7
lines changed

index.html

Lines changed: 29 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -970,13 +970,35 @@ <h1>Push Notifications</h1>
970970
</section>
971971

972972

973-
<section>
974-
<i class="material-icons">schedule</i> <h3>Instant Loading</h3>
975-
<i class="material-icons">touch_app</i> <h3>Fast</h3>
976-
<i class="material-icons">phone_android</i> <h3>Add to Home Screen</h3>
977-
<i class="material-icons">lock</i> <h3>Secure</h3>
978-
<i class="material-icons">notifications_active</i> <h3>Push Notifications</h3>
979-
<i class="material-icons">devices_other</i> <h3>Responsive</h3>
973+
<section>
974+
<h3>Progressive Web Apps</h3>
975+
976+
<div style="margin-left: 3em">
977+
<div class="cards">
978+
<i class="material-icons">schedule</i>
979+
<p>Instant Loading</p>
980+
</div>
981+
<div class="cards">
982+
<i class="material-icons">touch_app</i>
983+
<p>Fast</p>
984+
</div>
985+
<div class="cards">
986+
<i class="material-icons">phone_android</i>
987+
<p>Add to Home Screen</p>
988+
</div>
989+
<div class="cards">
990+
<i class="material-icons">lock</i>
991+
<p>Secure</p>
992+
</div>
993+
<div class="cards">
994+
<i class="material-icons">notifications_active</i>
995+
<p>Push Notifications</p>
996+
</div>
997+
<div class="cards">
998+
<i class="material-icons">devices_other</i>
999+
<p>Responsive</p>
1000+
</div>
1001+
</div>
9801002
</section>
9811003

9821004

src/css/common.css

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,3 +290,24 @@ html body {
290290
opacity: 0.05;
291291
}
292292

293+
.reveal .slides .cards .material-icons
294+
{
295+
font-size: 3em;
296+
float: left;
297+
color: #ccc;
298+
}
299+
300+
.reveal .slides .cards p
301+
{
302+
float: left;
303+
padding-left: 0.5em;
304+
}
305+
306+
.reveal .slides .cards
307+
{
308+
width: 50%;
309+
margin-top: 1em;
310+
margin-bottom: 1em;
311+
float: left;
312+
}
313+

0 commit comments

Comments
 (0)