comparison my_theme/css/print.css @ 12:727c48601d66

Copied default theme to my_theme so that the generated relative HTML can find the CSS and Javascript if I present on a different computer that doesn't have landslide installed. I also fixed a small typo in the presentation.
author Brian Neal <bgneal@gmail.com>
date Wed, 30 Nov 2011 18:44:44 -0600
parents
children
comparison
equal deleted inserted replaced
11:6d067ae303f3 12:727c48601d66
1 * {
2 margin: 0;
3 padding: 0;
4 }
5
6 @page {
7 size: landscape;
8 }
9
10 body {
11 font: 100% "Lucida Grande", "Trebuchet MS", Verdana, sans-serif;
12 padding: 0;
13 margin: 0;
14 }
15
16 div.slide {
17 min-width: 800px;
18 min-height: 600px;
19 padding: 1em;
20 overflow: hidden;
21 page-break-after: always;
22 border: 1px solid black;
23 border-radius: 20px;
24 }
25
26 div.slide div.inner {
27 width: 800px;
28 height: 600px;
29 margin: auto;
30 display: table-cell;
31 }
32
33 h1 {
34 font-size: 2.4em;
35 }
36
37 h2 {
38 font-size: 1.4em;
39 }
40
41 h3 {
42 margin: 1em 0;
43 }
44
45 ul {
46 margin: 0;
47 padding: 0;
48 }
49
50 p, li, pre {
51 margin: 1em 0;
52 }
53
54 li {
55 margin-left: 2em;
56 }
57
58 a {
59 color: #000000;
60 }
61
62 pre, code {
63 max-width: 800px;
64 background: #eee;
65 font-family: Monaco, monospace;
66 font-size: 90%;
67 }
68
69 pre {
70 padding: .2em .5em;
71 overflow: hidden;
72 border-radius: .8em;
73 }
74
75 code {
76 padding: 0 .2em;
77 }
78
79 .slide header:only-child h1 {
80 line-height: 180%;
81 text-align: center;
82 display: table-cell;
83 vertical-align: middle;
84 height: 600px;
85 width: 800px;
86 font-size: 48px;
87 margin-top:100px;
88 margin-bottom:100px;
89 }
90
91 #toc, #help, .slide aside, .slide footer, .slide .notes,
92 .presenter_notes, #current_presenter_notes, #presenter_note {
93 display: none;
94 }