Skip to content

Commit

Permalink
Merge pull request #1 from fhemberger/master
Browse files Browse the repository at this point in the history
 Add presenter notes support
  • Loading branch information
Vadim Makeev committed Jan 1, 2013
2 parents 834164d + b7d948d commit 8f59337
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 2 deletions.
6 changes: 6 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ <h1>Presentation Title</h1>
<h2>Header</h2>
<p>Typewriter etsy messenger bag <a href="">fingerstache</a>, aesthetic vinyl semiotics twee <strong>DIY</strong> forage chillwave. Thundercats ennui messenger bag, <em>squid</em> carles chillwave shoreditch pickled cliche <b>letterpress</b>. DIY beard locavore <i>occupy</i> salvia, whatever single-origin <code>coffee</code> fanny pack 3 wolf moon typewriter gastropub kale chips.</p>
<p class="note">Secondary footnote.</p>
<footer class="presenter-notes">
Presenter note for first slide
</footer>
</div></section>
<section class="slide"><div>
<h2>Lists in English typography</h2>
Expand All @@ -31,6 +34,9 @@ <h2>Lists in English typography</h2>
</li>
<li>Before they sold out master</li>
</ul>
<footer class="presenter-notes">
Presenter note for second slide
</footer>
</div></section>
<section class="slide" lang="ru"><div>
<h2>Lists in Russian typography</h2>
Expand Down
Empty file modified styles/fonts.scss
100755 → 100644
Empty file.
19 changes: 19 additions & 0 deletions styles/presenternotes.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.full .presenter-notes {
display:none;
}

.list .presenter-notes {
background: #fff;
padding: 5px 10px;
z-index: 10;
display: block;
position: absolute;
bottom: -500px;
left: 50px;
right: 50px;
@include transition(bottom .5s);
}

.list .slide:hover .presenter-notes {
bottom: 15px;
}
Loading

0 comments on commit 8f59337

Please sign in to comment.