progress-off key added for disabling progress bar on certain slides

This commit is contained in:
Vadim Makeev 2011-04-27 13:36:29 +04:00
parent 9243cdf0ff
commit 8a5428b721
2 changed files with 6 additions and 3 deletions

View File

@ -114,7 +114,7 @@
</blockquote>
</article>
</section>
<section class="slide back" id="Image">
<section class="slide back progress-off" id="Image">
<article>
<h2>Picture</h2>
</article>

View File

@ -139,7 +139,7 @@ A {
-webkit-border-radius:0.3em;
-moz-border-radius:0.3em;
border-radius:0.3em;
background:#EEE;
background:#FAFAA2;
font-family:Consolas, 'Droid Sans Mono', monospace;
}
@ -353,3 +353,6 @@ A {
-o-transition:width 0.2s linear;
transition:width 0.2s linear;
}
.progress-off:target ~ .progress {
display:none;
}