comparison Slide/s6/themes/screen.css @ 85:1f4e174f0f1a

add slide
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Tue, 08 Jan 2019 19:32:49 +0900
parents
children
comparison
equal deleted inserted replaced
84:6c69fdd1716c 85:1f4e174f0f1a
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 }