reveal-jekyll 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (95) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +94 -0
  4. data/_includes/basements.html +7 -0
  5. data/_includes/head.html +39 -0
  6. data/_includes/reveal.html +25 -0
  7. data/_layouts/presentation.html +26 -0
  8. data/_layouts/raw.html +20 -0
  9. data/assets/css/print/paper.css +203 -0
  10. data/assets/css/print/pdf.css +164 -0
  11. data/assets/css/reset.css +30 -0
  12. data/assets/css/reveal.css +1598 -0
  13. data/assets/css/reveal.scss +1768 -0
  14. data/assets/css/rouge-highlight/monokai.css +210 -0
  15. data/assets/css/theme/README.md +21 -0
  16. data/assets/css/theme/beige.css +277 -0
  17. data/assets/css/theme/black.css +273 -0
  18. data/assets/css/theme/blood.css +296 -0
  19. data/assets/css/theme/league.css +279 -0
  20. data/assets/css/theme/moon.css +277 -0
  21. data/assets/css/theme/night.css +271 -0
  22. data/assets/css/theme/serif.css +273 -0
  23. data/assets/css/theme/simple.css +276 -0
  24. data/assets/css/theme/sky.css +280 -0
  25. data/assets/css/theme/solarized.css +277 -0
  26. data/assets/css/theme/source/beige.scss +39 -0
  27. data/assets/css/theme/source/black.scss +49 -0
  28. data/assets/css/theme/source/blood.scss +78 -0
  29. data/assets/css/theme/source/league.scss +34 -0
  30. data/assets/css/theme/source/moon.scss +57 -0
  31. data/assets/css/theme/source/night.scss +34 -0
  32. data/assets/css/theme/source/serif.scss +35 -0
  33. data/assets/css/theme/source/simple.scss +43 -0
  34. data/assets/css/theme/source/sky.scss +46 -0
  35. data/assets/css/theme/source/solarized.scss +63 -0
  36. data/assets/css/theme/source/white.scss +49 -0
  37. data/assets/css/theme/template/mixins.scss +29 -0
  38. data/assets/css/theme/template/settings.scss +45 -0
  39. data/assets/css/theme/template/theme.scss +325 -0
  40. data/assets/css/theme/white.css +273 -0
  41. data/assets/js/reveal.js +6028 -0
  42. data/assets/lib/css/monokai.css +71 -0
  43. data/assets/lib/css/zenburn.css +80 -0
  44. data/assets/lib/font/Pacifico/Pacifico.eot +0 -0
  45. data/assets/lib/font/Pacifico/Pacifico.svg +10833 -0
  46. data/assets/lib/font/Pacifico/Pacifico.ttf +0 -0
  47. data/assets/lib/font/Pacifico/Pacifico.woff +0 -0
  48. data/assets/lib/font/Pacifico/Pacifico.woff2 +0 -0
  49. data/assets/lib/font/Pacifico/original-pacifico-regular.ttf +0 -0
  50. data/assets/lib/font/fontawesome/FontAwesome.otf +0 -0
  51. data/assets/lib/font/fontawesome/fontawesome-webfont.eot +0 -0
  52. data/assets/lib/font/fontawesome/fontawesome-webfont.svg +2671 -0
  53. data/assets/lib/font/fontawesome/fontawesome-webfont.ttf +0 -0
  54. data/assets/lib/font/fontawesome/fontawesome-webfont.woff +0 -0
  55. data/assets/lib/font/fontawesome/fontawesome-webfont.woff2 +0 -0
  56. data/assets/lib/font/league-gothic/LICENSE +2 -0
  57. data/assets/lib/font/league-gothic/league-gothic.css +10 -0
  58. data/assets/lib/font/league-gothic/league-gothic.eot +0 -0
  59. data/assets/lib/font/league-gothic/league-gothic.ttf +0 -0
  60. data/assets/lib/font/league-gothic/league-gothic.woff +0 -0
  61. data/assets/lib/font/source-sans-pro/LICENSE +45 -0
  62. data/assets/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  63. data/assets/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
  64. data/assets/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  65. data/assets/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  66. data/assets/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
  67. data/assets/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  68. data/assets/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  69. data/assets/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
  70. data/assets/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  71. data/assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
  72. data/assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
  73. data/assets/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
  74. data/assets/lib/font/source-sans-pro/source-sans-pro.css +39 -0
  75. data/assets/lib/js/html5shiv.js +7 -0
  76. data/assets/lib/js/promise.js +2 -0
  77. data/assets/plugin/highlight/highlight.js +168 -0
  78. data/assets/plugin/markdown/example.html +134 -0
  79. data/assets/plugin/markdown/example.md +36 -0
  80. data/assets/plugin/markdown/markdown.js +446 -0
  81. data/assets/plugin/markdown/marked.js +6 -0
  82. data/assets/plugin/math/math.js +92 -0
  83. data/assets/plugin/multiplex/client.js +13 -0
  84. data/assets/plugin/multiplex/index.js +64 -0
  85. data/assets/plugin/multiplex/master.js +34 -0
  86. data/assets/plugin/multiplex/package.json +19 -0
  87. data/assets/plugin/notes-server/client.js +65 -0
  88. data/assets/plugin/notes-server/index.js +69 -0
  89. data/assets/plugin/notes-server/notes.html +585 -0
  90. data/assets/plugin/notes/notes.html +834 -0
  91. data/assets/plugin/notes/notes.js +178 -0
  92. data/assets/plugin/print-pdf/print-pdf.js +67 -0
  93. data/assets/plugin/search/search.js +206 -0
  94. data/assets/plugin/zoom-js/zoom.js +277 -0
  95. metadata +180 -0
@@ -0,0 +1,279 @@
1
+ /**
2
+ * League theme for reveal.js.
3
+ *
4
+ * This was the default theme pre-3.0.0.
5
+ *
6
+ * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
7
+ */
8
+ @import url(../../lib/font/league-gothic/league-gothic.css);
9
+ @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
10
+ /*********************************************
11
+ * GLOBAL STYLES
12
+ *********************************************/
13
+ body {
14
+ background: #1c1e20;
15
+ background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
16
+ background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20));
17
+ background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
18
+ background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
19
+ background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
20
+ background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);
21
+ background-color: #2b2b2b; }
22
+
23
+ .reveal {
24
+ font-family: "Lato", sans-serif;
25
+ font-size: 40px;
26
+ font-weight: normal;
27
+ color: #eee; }
28
+
29
+ ::selection {
30
+ color: #fff;
31
+ background: #FF5E99;
32
+ text-shadow: none; }
33
+
34
+ ::-moz-selection {
35
+ color: #fff;
36
+ background: #FF5E99;
37
+ text-shadow: none; }
38
+
39
+ .reveal .slides section,
40
+ .reveal .slides section > section {
41
+ line-height: 1.3;
42
+ font-weight: inherit; }
43
+
44
+ /*********************************************
45
+ * HEADERS
46
+ *********************************************/
47
+ .reveal h1,
48
+ .reveal h2,
49
+ .reveal h3,
50
+ .reveal h4,
51
+ .reveal h5,
52
+ .reveal h6 {
53
+ margin: 0 0 20px 0;
54
+ color: #eee;
55
+ font-family: "League Gothic", Impact, sans-serif;
56
+ font-weight: normal;
57
+ line-height: 1.2;
58
+ letter-spacing: normal;
59
+ text-transform: uppercase;
60
+ text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
61
+ word-wrap: break-word; }
62
+
63
+ .reveal h1 {
64
+ font-size: 3.77em; }
65
+
66
+ .reveal h2 {
67
+ font-size: 2.11em; }
68
+
69
+ .reveal h3 {
70
+ font-size: 1.55em; }
71
+
72
+ .reveal h4 {
73
+ font-size: 1em; }
74
+
75
+ .reveal h1 {
76
+ text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }
77
+
78
+ /*********************************************
79
+ * OTHER
80
+ *********************************************/
81
+ .reveal p {
82
+ margin: 20px 0;
83
+ line-height: 1.3; }
84
+
85
+ /* Ensure certain elements are never larger than the slide itself */
86
+ .reveal img,
87
+ .reveal video,
88
+ .reveal iframe {
89
+ max-width: 95%;
90
+ max-height: 95%; }
91
+
92
+ .reveal strong,
93
+ .reveal b {
94
+ font-weight: bold; }
95
+
96
+ .reveal em {
97
+ font-style: italic; }
98
+
99
+ .reveal ol,
100
+ .reveal dl,
101
+ .reveal ul {
102
+ display: inline-block;
103
+ text-align: left;
104
+ margin: 0 0 0 1em; }
105
+
106
+ .reveal ol {
107
+ list-style-type: decimal; }
108
+
109
+ .reveal ul {
110
+ list-style-type: disc; }
111
+
112
+ .reveal ul ul {
113
+ list-style-type: square; }
114
+
115
+ .reveal ul ul ul {
116
+ list-style-type: circle; }
117
+
118
+ .reveal ul ul,
119
+ .reveal ul ol,
120
+ .reveal ol ol,
121
+ .reveal ol ul {
122
+ display: block;
123
+ margin-left: 40px; }
124
+
125
+ .reveal dt {
126
+ font-weight: bold; }
127
+
128
+ .reveal dd {
129
+ margin-left: 40px; }
130
+
131
+ .reveal blockquote {
132
+ display: block;
133
+ position: relative;
134
+ width: 70%;
135
+ margin: 20px auto;
136
+ padding: 5px;
137
+ font-style: italic;
138
+ background: rgba(255, 255, 255, 0.05);
139
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
140
+
141
+ .reveal blockquote p:first-child,
142
+ .reveal blockquote p:last-child {
143
+ display: inline-block; }
144
+
145
+ .reveal q {
146
+ font-style: italic; }
147
+
148
+ .reveal pre {
149
+ display: block;
150
+ position: relative;
151
+ width: 90%;
152
+ margin: 20px auto;
153
+ text-align: left;
154
+ font-size: 0.55em;
155
+ font-family: monospace;
156
+ line-height: 1.2em;
157
+ word-wrap: break-word;
158
+ box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); }
159
+
160
+ .reveal code {
161
+ font-family: monospace;
162
+ text-transform: none; }
163
+
164
+ .reveal pre code {
165
+ display: block;
166
+ padding: 5px;
167
+ overflow: auto;
168
+ max-height: 400px;
169
+ word-wrap: normal; }
170
+
171
+ .reveal table {
172
+ margin: auto;
173
+ border-collapse: collapse;
174
+ border-spacing: 0; }
175
+
176
+ .reveal table th {
177
+ font-weight: bold; }
178
+
179
+ .reveal table th,
180
+ .reveal table td {
181
+ text-align: left;
182
+ padding: 0.2em 0.5em 0.2em 0.5em;
183
+ border-bottom: 1px solid; }
184
+
185
+ .reveal table th[align="center"],
186
+ .reveal table td[align="center"] {
187
+ text-align: center; }
188
+
189
+ .reveal table th[align="right"],
190
+ .reveal table td[align="right"] {
191
+ text-align: right; }
192
+
193
+ .reveal table tbody tr:last-child th,
194
+ .reveal table tbody tr:last-child td {
195
+ border-bottom: none; }
196
+
197
+ .reveal sup {
198
+ vertical-align: super;
199
+ font-size: smaller; }
200
+
201
+ .reveal sub {
202
+ vertical-align: sub;
203
+ font-size: smaller; }
204
+
205
+ .reveal small {
206
+ display: inline-block;
207
+ font-size: 0.6em;
208
+ line-height: 1.2em;
209
+ vertical-align: top; }
210
+
211
+ .reveal small * {
212
+ vertical-align: top; }
213
+
214
+ /*********************************************
215
+ * LINKS
216
+ *********************************************/
217
+ .reveal a {
218
+ color: #13DAEC;
219
+ text-decoration: none;
220
+ -webkit-transition: color .15s ease;
221
+ -moz-transition: color .15s ease;
222
+ transition: color .15s ease; }
223
+
224
+ .reveal a:hover {
225
+ color: #71e9f4;
226
+ text-shadow: none;
227
+ border: none; }
228
+
229
+ .reveal .roll span:after {
230
+ color: #fff;
231
+ background: #0d99a5; }
232
+
233
+ /*********************************************
234
+ * IMAGES
235
+ *********************************************/
236
+ .reveal section img {
237
+ margin: 15px 0px;
238
+ background: rgba(255, 255, 255, 0.12);
239
+ border: 4px solid #eee;
240
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
241
+
242
+ .reveal section img.plain {
243
+ border: 0;
244
+ box-shadow: none; }
245
+
246
+ .reveal a img {
247
+ -webkit-transition: all .15s linear;
248
+ -moz-transition: all .15s linear;
249
+ transition: all .15s linear; }
250
+
251
+ .reveal a:hover img {
252
+ background: rgba(255, 255, 255, 0.2);
253
+ border-color: #13DAEC;
254
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
255
+
256
+ /*********************************************
257
+ * NAVIGATION CONTROLS
258
+ *********************************************/
259
+ .reveal .controls {
260
+ color: #13DAEC; }
261
+
262
+ /*********************************************
263
+ * PROGRESS BAR
264
+ *********************************************/
265
+ .reveal .progress {
266
+ background: rgba(0, 0, 0, 0.2);
267
+ color: #13DAEC; }
268
+
269
+ .reveal .progress span {
270
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
271
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
272
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
273
+
274
+ /*********************************************
275
+ * PRINT BACKGROUND
276
+ *********************************************/
277
+ @media print {
278
+ .backgrounds {
279
+ background-color: #2b2b2b; } }
@@ -0,0 +1,277 @@
1
+ /**
2
+ * Solarized Dark theme for reveal.js.
3
+ * Author: Achim Staebler
4
+ */
5
+ @import url(../../lib/font/league-gothic/league-gothic.css);
6
+ @import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);
7
+ /**
8
+ * Solarized colors by Ethan Schoonover
9
+ */
10
+ html * {
11
+ color-profile: sRGB;
12
+ rendering-intent: auto; }
13
+
14
+ /*********************************************
15
+ * GLOBAL STYLES
16
+ *********************************************/
17
+ body {
18
+ background: #002b36;
19
+ background-color: #002b36; }
20
+
21
+ .reveal {
22
+ font-family: "Lato", sans-serif;
23
+ font-size: 40px;
24
+ font-weight: normal;
25
+ color: #93a1a1; }
26
+
27
+ ::selection {
28
+ color: #fff;
29
+ background: #d33682;
30
+ text-shadow: none; }
31
+
32
+ ::-moz-selection {
33
+ color: #fff;
34
+ background: #d33682;
35
+ text-shadow: none; }
36
+
37
+ .reveal .slides section,
38
+ .reveal .slides section > section {
39
+ line-height: 1.3;
40
+ font-weight: inherit; }
41
+
42
+ /*********************************************
43
+ * HEADERS
44
+ *********************************************/
45
+ .reveal h1,
46
+ .reveal h2,
47
+ .reveal h3,
48
+ .reveal h4,
49
+ .reveal h5,
50
+ .reveal h6 {
51
+ margin: 0 0 20px 0;
52
+ color: #eee8d5;
53
+ font-family: "League Gothic", Impact, sans-serif;
54
+ font-weight: normal;
55
+ line-height: 1.2;
56
+ letter-spacing: normal;
57
+ text-transform: uppercase;
58
+ text-shadow: none;
59
+ word-wrap: break-word; }
60
+
61
+ .reveal h1 {
62
+ font-size: 3.77em; }
63
+
64
+ .reveal h2 {
65
+ font-size: 2.11em; }
66
+
67
+ .reveal h3 {
68
+ font-size: 1.55em; }
69
+
70
+ .reveal h4 {
71
+ font-size: 1em; }
72
+
73
+ .reveal h1 {
74
+ text-shadow: none; }
75
+
76
+ /*********************************************
77
+ * OTHER
78
+ *********************************************/
79
+ .reveal p {
80
+ margin: 20px 0;
81
+ line-height: 1.3; }
82
+
83
+ /* Ensure certain elements are never larger than the slide itself */
84
+ .reveal img,
85
+ .reveal video,
86
+ .reveal iframe {
87
+ max-width: 95%;
88
+ max-height: 95%; }
89
+
90
+ .reveal strong,
91
+ .reveal b {
92
+ font-weight: bold; }
93
+
94
+ .reveal em {
95
+ font-style: italic; }
96
+
97
+ .reveal ol,
98
+ .reveal dl,
99
+ .reveal ul {
100
+ display: inline-block;
101
+ text-align: left;
102
+ margin: 0 0 0 1em; }
103
+
104
+ .reveal ol {
105
+ list-style-type: decimal; }
106
+
107
+ .reveal ul {
108
+ list-style-type: disc; }
109
+
110
+ .reveal ul ul {
111
+ list-style-type: square; }
112
+
113
+ .reveal ul ul ul {
114
+ list-style-type: circle; }
115
+
116
+ .reveal ul ul,
117
+ .reveal ul ol,
118
+ .reveal ol ol,
119
+ .reveal ol ul {
120
+ display: block;
121
+ margin-left: 40px; }
122
+
123
+ .reveal dt {
124
+ font-weight: bold; }
125
+
126
+ .reveal dd {
127
+ margin-left: 40px; }
128
+
129
+ .reveal blockquote {
130
+ display: block;
131
+ position: relative;
132
+ width: 70%;
133
+ margin: 20px auto;
134
+ padding: 5px;
135
+ font-style: italic;
136
+ background: rgba(255, 255, 255, 0.05);
137
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
138
+
139
+ .reveal blockquote p:first-child,
140
+ .reveal blockquote p:last-child {
141
+ display: inline-block; }
142
+
143
+ .reveal q {
144
+ font-style: italic; }
145
+
146
+ .reveal pre {
147
+ display: block;
148
+ position: relative;
149
+ width: 90%;
150
+ margin: 20px auto;
151
+ text-align: left;
152
+ font-size: 0.55em;
153
+ font-family: monospace;
154
+ line-height: 1.2em;
155
+ word-wrap: break-word;
156
+ box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); }
157
+
158
+ .reveal code {
159
+ font-family: monospace;
160
+ text-transform: none; }
161
+
162
+ .reveal pre code {
163
+ display: block;
164
+ padding: 5px;
165
+ overflow: auto;
166
+ max-height: 400px;
167
+ word-wrap: normal; }
168
+
169
+ .reveal table {
170
+ margin: auto;
171
+ border-collapse: collapse;
172
+ border-spacing: 0; }
173
+
174
+ .reveal table th {
175
+ font-weight: bold; }
176
+
177
+ .reveal table th,
178
+ .reveal table td {
179
+ text-align: left;
180
+ padding: 0.2em 0.5em 0.2em 0.5em;
181
+ border-bottom: 1px solid; }
182
+
183
+ .reveal table th[align="center"],
184
+ .reveal table td[align="center"] {
185
+ text-align: center; }
186
+
187
+ .reveal table th[align="right"],
188
+ .reveal table td[align="right"] {
189
+ text-align: right; }
190
+
191
+ .reveal table tbody tr:last-child th,
192
+ .reveal table tbody tr:last-child td {
193
+ border-bottom: none; }
194
+
195
+ .reveal sup {
196
+ vertical-align: super;
197
+ font-size: smaller; }
198
+
199
+ .reveal sub {
200
+ vertical-align: sub;
201
+ font-size: smaller; }
202
+
203
+ .reveal small {
204
+ display: inline-block;
205
+ font-size: 0.6em;
206
+ line-height: 1.2em;
207
+ vertical-align: top; }
208
+
209
+ .reveal small * {
210
+ vertical-align: top; }
211
+
212
+ /*********************************************
213
+ * LINKS
214
+ *********************************************/
215
+ .reveal a {
216
+ color: #268bd2;
217
+ text-decoration: none;
218
+ -webkit-transition: color .15s ease;
219
+ -moz-transition: color .15s ease;
220
+ transition: color .15s ease; }
221
+
222
+ .reveal a:hover {
223
+ color: #78b9e6;
224
+ text-shadow: none;
225
+ border: none; }
226
+
227
+ .reveal .roll span:after {
228
+ color: #fff;
229
+ background: #1a6091; }
230
+
231
+ /*********************************************
232
+ * IMAGES
233
+ *********************************************/
234
+ .reveal section img {
235
+ margin: 15px 0px;
236
+ background: rgba(255, 255, 255, 0.12);
237
+ border: 4px solid #93a1a1;
238
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
239
+
240
+ .reveal section img.plain {
241
+ border: 0;
242
+ box-shadow: none; }
243
+
244
+ .reveal a img {
245
+ -webkit-transition: all .15s linear;
246
+ -moz-transition: all .15s linear;
247
+ transition: all .15s linear; }
248
+
249
+ .reveal a:hover img {
250
+ background: rgba(255, 255, 255, 0.2);
251
+ border-color: #268bd2;
252
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
253
+
254
+ /*********************************************
255
+ * NAVIGATION CONTROLS
256
+ *********************************************/
257
+ .reveal .controls {
258
+ color: #268bd2; }
259
+
260
+ /*********************************************
261
+ * PROGRESS BAR
262
+ *********************************************/
263
+ .reveal .progress {
264
+ background: rgba(0, 0, 0, 0.2);
265
+ color: #268bd2; }
266
+
267
+ .reveal .progress span {
268
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
269
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
270
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
271
+
272
+ /*********************************************
273
+ * PRINT BACKGROUND
274
+ *********************************************/
275
+ @media print {
276
+ .backgrounds {
277
+ background-color: #002b36; } }