comparison 2015_01_27/slide_template/s6/print.css @ 0:47676a16ed13

Add Slides
author Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
date Tue, 14 Jul 2015 17:23:04 +0900
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:47676a16ed13
1 /*********************************
2 * CSS @media print rules (not projection or screen)
3 */
4
5 /*************
6 * Make sure all slides are visible (to make them all appear in prin)
7 */
8
9 .slide { page-break-inside: avoid;
10 display: block !important;
11 }
12
13 h1 { page-break-after: avoid; }
14 ul { page-break-inside: avoid; }
15
16 body { font-size: 12pt; }
17
18 /********************
19 * Extra styling for first slide (title slide)
20 */
21
22 #slide1 h1 { font-size: 200%; border: none; margin: 0.5em 0 0.25em; }
23 #slide1 h3 { margin: 0; padding: 0;}
24 #slide1 h4 { margin: 0 0 0.5em; padding: 0;}
25 #slide1 { margin-bottom: 3em; }
26
27 h1 { border-top: 2pt solid gray;
28 border-bottom: 1px dotted silver;
29 }
30
31 /******
32 * Turn on print-specific stuff/classes
33 */
34
35 .extra { background: transparent !important; }
36 div.extra, pre.extra, .example { font-size: 10pt; color: #333; }
37 ul.extra a { font-weight: bold; }
38
39 /*****
40 * Turn off online (screen/projection)-specific stuff/classes
41 */
42
43 p.example { display: none; }
44
45
46 /*****************
47 * The following rule keeps the layout stuff out of print.
48 * Remove at your own risk!
49 */
50
51 .layout,
52 .layout * {display: none !important;}
53
54 .projection { display: none; }