comparison slides/themes/blank/print.css.less @ 77:bd73f0e1cdd4

Added slides
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Mon, 03 Feb 2014 08:40:32 +0900
parents
children
comparison
equal deleted inserted replaced
76:5c5d71d36c14 77:bd73f0e1cdd4
1 /*********************************
2 * CSS @media print rules (not projection or screen)
3 */
4
5 //////////////////////////////////////
6 // note: this is a less extendend css script, to learn more about less; see lesscss.org)
7
8 body { font-size: 12pt; }
9
10
11 .slide {
12 display: block !important;
13 page-break-inside: avoid;
14
15 h1 { page-break-after: avoid; }
16 ul { page-break-inside: avoid; }
17
18 h1 { border-top: 2pt solid gray;
19 border-bottom: 1px dotted silver;
20 }
21
22 /********************
23 * Extra styling for first slide (title/cover slide)
24 */
25
26 &:first-child {
27 margin-bottom: 3em;
28
29 h1 { font-size: 200%;
30 border: none;
31 margin: 0.5em 0 0.25em; }
32 h3 { margin: 0; padding: 0;}
33 h4 { margin: 0 0 0.5em; padding: 0;}
34 }
35 }