comparison presen/s6/themes/screen.css @ 175:7e7fe5e28ba4

add presen directory
author Nozomi Teruya <e125769@ie.u-ryukyu.ac.jp>
date Mon, 05 Feb 2018 17:54:31 +0900
parents
children
comparison
equal deleted inserted replaced
174:f0e9cc7d13f9 175:7e7fe5e28ba4
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 }