Commit a69fdf56 authored by Vadim Makeev's avatar Vadim Makeev

styles and demo slide for inner navigation

parent c58e5944
...@@ -144,6 +144,19 @@ ...@@ -144,6 +144,19 @@
</blockquote> </blockquote>
</section> </section>
</div></div> </div></div>
<div class="slide" id="InnerNavigation"><div>
<section>
<header>
<h2>Inner Navigation</h2>
</header>
<ol class="inner">
<li class="active">This tool is provided</li>
<li>Without warranty, guarantee</li>
<li>Or much in the way of explanation
<li>Erase your hard drive…</li>
</ol>
</section>
</div></div>
<div class="slide" id="ThankYou"><div> <div class="slide" id="ThankYou"><div>
<section> <section>
<header> <header>
......
...@@ -8,28 +8,26 @@ BODY { ...@@ -8,28 +8,26 @@ BODY {
/* Slide /* Slide
---------------------------------------- */ ---------------------------------------- */
.slide { .slide:after {
counter-increment:paging;
content:counter(paging, decimal-leading-zero);
} }
.slide:after { .slide SECTION {
counter-increment:paging; padding:80px 120px 0;
content:counter(paging, decimal-leading-zero); width:784px;
} height:560px;
.slide SECTION { background:#FFF;
padding:80px 120px 0; color:#000;
width:784px; }
height:560px; .slide SECTION:before {
background:#FFF; position:absolute;
color:#000; top:0;
right:120px;
width:40px;
height:120px;
background:url(../images/ribbon.svg) no-repeat;
content:'';
} }
.slide SECTION:before {
position:absolute;
top:0;
right:120px;
width:40px;
height:120px;
background:url(../images/ribbon.svg) no-repeat;
content:'';
}
/* Header */ /* Header */
.slide HEADER { .slide HEADER {
...@@ -327,6 +325,19 @@ BODY { ...@@ -327,6 +325,19 @@ BODY {
content:''; content:'';
} }
/* Inner Navigation */
.inner > * {
opacity:0;
-webkit-transition:opacity 0.5s linear;
-moz-transition:opacity 0.5s linear;
-ms-transition:opacity 0.5s linear;
-o-transition:opacity 0.5s linear;
transition:opacity 0.5s linear;
}
.inner > .active {
opacity:1;
}
/* Progress */ /* Progress */
.full .progress { .full .progress {
position:absolute; position:absolute;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment