103
|
1 /*********************************
|
|
2 * CSS @media screen (not projection or print)
|
|
3 *
|
|
4 * 1) projection -> slideshow mode (display one slide at-a-time; hide all others)
|
|
5 * 2) screen -> outline mode (display all slides-at-once on screen)
|
|
6 * 3) print -> print (and print preview)
|
|
7 *
|
|
8 * toggle between projection/screen (that is, slideshow/outline) mode using t-key
|
|
9 */
|
|
10 .slide {
|
|
11 display: block !important;
|
|
12 margin: 1.5em 0 0;
|
|
13 border-top: 1px solid #888;
|
|
14 }
|
|
15 .slide h1 {
|
|
16 border-bottom: 1px solid #AAA;
|
|
17 }
|
|
18 .slide:first-child {
|
|
19 margin: 0;
|
|
20 border: none;
|
|
21 }
|
|
22 .slide:first-child h1 {
|
|
23 border: none;
|
|
24 padding-top: 1.5em;
|
|
25 }
|