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,273 @@
1
+ /**
2
+ * Black theme for reveal.js. This is the opposite of the 'white' theme.
3
+ *
4
+ * By Hakim El Hattab, http://hakim.se
5
+ */
6
+ @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
7
+ section.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {
8
+ color: #222; }
9
+
10
+ /*********************************************
11
+ * GLOBAL STYLES
12
+ *********************************************/
13
+ body {
14
+ background: #191919;
15
+ background-color: #191919; }
16
+
17
+ .reveal {
18
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
19
+ font-size: 42px;
20
+ font-weight: normal;
21
+ color: #fff; }
22
+
23
+ ::selection {
24
+ color: #fff;
25
+ background: #bee4fd;
26
+ text-shadow: none; }
27
+
28
+ ::-moz-selection {
29
+ color: #fff;
30
+ background: #bee4fd;
31
+ text-shadow: none; }
32
+
33
+ .reveal .slides section,
34
+ .reveal .slides section > section {
35
+ line-height: 1.3;
36
+ font-weight: inherit; }
37
+
38
+ /*********************************************
39
+ * HEADERS
40
+ *********************************************/
41
+ .reveal h1,
42
+ .reveal h2,
43
+ .reveal h3,
44
+ .reveal h4,
45
+ .reveal h5,
46
+ .reveal h6 {
47
+ margin: 0 0 20px 0;
48
+ color: #fff;
49
+ font-family: "Source Sans Pro", Helvetica, sans-serif;
50
+ font-weight: 600;
51
+ line-height: 1.2;
52
+ letter-spacing: normal;
53
+ text-transform: uppercase;
54
+ text-shadow: none;
55
+ word-wrap: break-word; }
56
+
57
+ .reveal h1 {
58
+ font-size: 2.5em; }
59
+
60
+ .reveal h2 {
61
+ font-size: 1.6em; }
62
+
63
+ .reveal h3 {
64
+ font-size: 1.3em; }
65
+
66
+ .reveal h4 {
67
+ font-size: 1em; }
68
+
69
+ .reveal h1 {
70
+ text-shadow: none; }
71
+
72
+ /*********************************************
73
+ * OTHER
74
+ *********************************************/
75
+ .reveal p {
76
+ margin: 20px 0;
77
+ line-height: 1.3; }
78
+
79
+ /* Ensure certain elements are never larger than the slide itself */
80
+ .reveal img,
81
+ .reveal video,
82
+ .reveal iframe {
83
+ max-width: 95%;
84
+ max-height: 95%; }
85
+
86
+ .reveal strong,
87
+ .reveal b {
88
+ font-weight: bold; }
89
+
90
+ .reveal em {
91
+ font-style: italic; }
92
+
93
+ .reveal ol,
94
+ .reveal dl,
95
+ .reveal ul {
96
+ display: inline-block;
97
+ text-align: left;
98
+ margin: 0 0 0 1em; }
99
+
100
+ .reveal ol {
101
+ list-style-type: decimal; }
102
+
103
+ .reveal ul {
104
+ list-style-type: disc; }
105
+
106
+ .reveal ul ul {
107
+ list-style-type: square; }
108
+
109
+ .reveal ul ul ul {
110
+ list-style-type: circle; }
111
+
112
+ .reveal ul ul,
113
+ .reveal ul ol,
114
+ .reveal ol ol,
115
+ .reveal ol ul {
116
+ display: block;
117
+ margin-left: 40px; }
118
+
119
+ .reveal dt {
120
+ font-weight: bold; }
121
+
122
+ .reveal dd {
123
+ margin-left: 40px; }
124
+
125
+ .reveal blockquote {
126
+ display: block;
127
+ position: relative;
128
+ width: 70%;
129
+ margin: 20px auto;
130
+ padding: 5px;
131
+ font-style: italic;
132
+ background: rgba(255, 255, 255, 0.05);
133
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
134
+
135
+ .reveal blockquote p:first-child,
136
+ .reveal blockquote p:last-child {
137
+ display: inline-block; }
138
+
139
+ .reveal q {
140
+ font-style: italic; }
141
+
142
+ .reveal pre {
143
+ display: block;
144
+ position: relative;
145
+ width: 90%;
146
+ margin: 20px auto;
147
+ text-align: left;
148
+ font-size: 0.55em;
149
+ font-family: monospace;
150
+ line-height: 1.2em;
151
+ word-wrap: break-word;
152
+ box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); }
153
+
154
+ .reveal code {
155
+ font-family: monospace;
156
+ text-transform: none; }
157
+
158
+ .reveal pre code {
159
+ display: block;
160
+ padding: 5px;
161
+ overflow: auto;
162
+ max-height: 400px;
163
+ word-wrap: normal; }
164
+
165
+ .reveal table {
166
+ margin: auto;
167
+ border-collapse: collapse;
168
+ border-spacing: 0; }
169
+
170
+ .reveal table th {
171
+ font-weight: bold; }
172
+
173
+ .reveal table th,
174
+ .reveal table td {
175
+ text-align: left;
176
+ padding: 0.2em 0.5em 0.2em 0.5em;
177
+ border-bottom: 1px solid; }
178
+
179
+ .reveal table th[align="center"],
180
+ .reveal table td[align="center"] {
181
+ text-align: center; }
182
+
183
+ .reveal table th[align="right"],
184
+ .reveal table td[align="right"] {
185
+ text-align: right; }
186
+
187
+ .reveal table tbody tr:last-child th,
188
+ .reveal table tbody tr:last-child td {
189
+ border-bottom: none; }
190
+
191
+ .reveal sup {
192
+ vertical-align: super;
193
+ font-size: smaller; }
194
+
195
+ .reveal sub {
196
+ vertical-align: sub;
197
+ font-size: smaller; }
198
+
199
+ .reveal small {
200
+ display: inline-block;
201
+ font-size: 0.6em;
202
+ line-height: 1.2em;
203
+ vertical-align: top; }
204
+
205
+ .reveal small * {
206
+ vertical-align: top; }
207
+
208
+ /*********************************************
209
+ * LINKS
210
+ *********************************************/
211
+ .reveal a {
212
+ color: #42affa;
213
+ text-decoration: none;
214
+ -webkit-transition: color .15s ease;
215
+ -moz-transition: color .15s ease;
216
+ transition: color .15s ease; }
217
+
218
+ .reveal a:hover {
219
+ color: #8dcffc;
220
+ text-shadow: none;
221
+ border: none; }
222
+
223
+ .reveal .roll span:after {
224
+ color: #fff;
225
+ background: #068de9; }
226
+
227
+ /*********************************************
228
+ * IMAGES
229
+ *********************************************/
230
+ .reveal section img {
231
+ margin: 15px 0px;
232
+ background: rgba(255, 255, 255, 0.12);
233
+ border: 4px solid #fff;
234
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
235
+
236
+ .reveal section img.plain {
237
+ border: 0;
238
+ box-shadow: none; }
239
+
240
+ .reveal a img {
241
+ -webkit-transition: all .15s linear;
242
+ -moz-transition: all .15s linear;
243
+ transition: all .15s linear; }
244
+
245
+ .reveal a:hover img {
246
+ background: rgba(255, 255, 255, 0.2);
247
+ border-color: #42affa;
248
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
249
+
250
+ /*********************************************
251
+ * NAVIGATION CONTROLS
252
+ *********************************************/
253
+ .reveal .controls {
254
+ color: #42affa; }
255
+
256
+ /*********************************************
257
+ * PROGRESS BAR
258
+ *********************************************/
259
+ .reveal .progress {
260
+ background: rgba(0, 0, 0, 0.2);
261
+ color: #42affa; }
262
+
263
+ .reveal .progress span {
264
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
265
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
266
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
267
+
268
+ /*********************************************
269
+ * PRINT BACKGROUND
270
+ *********************************************/
271
+ @media print {
272
+ .backgrounds {
273
+ background-color: #191919; } }
@@ -0,0 +1,296 @@
1
+ /**
2
+ * Blood theme for reveal.js
3
+ * Author: Walther http://github.com/Walther
4
+ *
5
+ * Designed to be used with highlight.js theme
6
+ * "monokai_sublime.css" available from
7
+ * https://github.com/isagalaev/highlight.js/
8
+ *
9
+ * For other themes, change $codeBackground accordingly.
10
+ *
11
+ */
12
+ @import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);
13
+ /*********************************************
14
+ * GLOBAL STYLES
15
+ *********************************************/
16
+ body {
17
+ background: #222;
18
+ background-color: #222; }
19
+
20
+ .reveal {
21
+ font-family: Ubuntu, "sans-serif";
22
+ font-size: 40px;
23
+ font-weight: normal;
24
+ color: #eee; }
25
+
26
+ ::selection {
27
+ color: #fff;
28
+ background: #a23;
29
+ text-shadow: none; }
30
+
31
+ ::-moz-selection {
32
+ color: #fff;
33
+ background: #a23;
34
+ text-shadow: none; }
35
+
36
+ .reveal .slides section,
37
+ .reveal .slides section > section {
38
+ line-height: 1.3;
39
+ font-weight: inherit; }
40
+
41
+ /*********************************************
42
+ * HEADERS
43
+ *********************************************/
44
+ .reveal h1,
45
+ .reveal h2,
46
+ .reveal h3,
47
+ .reveal h4,
48
+ .reveal h5,
49
+ .reveal h6 {
50
+ margin: 0 0 20px 0;
51
+ color: #eee;
52
+ font-family: Ubuntu, "sans-serif";
53
+ font-weight: normal;
54
+ line-height: 1.2;
55
+ letter-spacing: normal;
56
+ text-transform: uppercase;
57
+ text-shadow: 2px 2px 2px #222;
58
+ word-wrap: break-word; }
59
+
60
+ .reveal h1 {
61
+ font-size: 3.77em; }
62
+
63
+ .reveal h2 {
64
+ font-size: 2.11em; }
65
+
66
+ .reveal h3 {
67
+ font-size: 1.55em; }
68
+
69
+ .reveal h4 {
70
+ font-size: 1em; }
71
+
72
+ .reveal h1 {
73
+ 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); }
74
+
75
+ /*********************************************
76
+ * OTHER
77
+ *********************************************/
78
+ .reveal p {
79
+ margin: 20px 0;
80
+ line-height: 1.3; }
81
+
82
+ /* Ensure certain elements are never larger than the slide itself */
83
+ .reveal img,
84
+ .reveal video,
85
+ .reveal iframe {
86
+ max-width: 95%;
87
+ max-height: 95%; }
88
+
89
+ .reveal strong,
90
+ .reveal b {
91
+ font-weight: bold; }
92
+
93
+ .reveal em {
94
+ font-style: italic; }
95
+
96
+ .reveal ol,
97
+ .reveal dl,
98
+ .reveal ul {
99
+ display: inline-block;
100
+ text-align: left;
101
+ margin: 0 0 0 1em; }
102
+
103
+ .reveal ol {
104
+ list-style-type: decimal; }
105
+
106
+ .reveal ul {
107
+ list-style-type: disc; }
108
+
109
+ .reveal ul ul {
110
+ list-style-type: square; }
111
+
112
+ .reveal ul ul ul {
113
+ list-style-type: circle; }
114
+
115
+ .reveal ul ul,
116
+ .reveal ul ol,
117
+ .reveal ol ol,
118
+ .reveal ol ul {
119
+ display: block;
120
+ margin-left: 40px; }
121
+
122
+ .reveal dt {
123
+ font-weight: bold; }
124
+
125
+ .reveal dd {
126
+ margin-left: 40px; }
127
+
128
+ .reveal blockquote {
129
+ display: block;
130
+ position: relative;
131
+ width: 70%;
132
+ margin: 20px auto;
133
+ padding: 5px;
134
+ font-style: italic;
135
+ background: rgba(255, 255, 255, 0.05);
136
+ box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }
137
+
138
+ .reveal blockquote p:first-child,
139
+ .reveal blockquote p:last-child {
140
+ display: inline-block; }
141
+
142
+ .reveal q {
143
+ font-style: italic; }
144
+
145
+ .reveal pre {
146
+ display: block;
147
+ position: relative;
148
+ width: 90%;
149
+ margin: 20px auto;
150
+ text-align: left;
151
+ font-size: 0.55em;
152
+ font-family: monospace;
153
+ line-height: 1.2em;
154
+ word-wrap: break-word;
155
+ box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15); }
156
+
157
+ .reveal code {
158
+ font-family: monospace;
159
+ text-transform: none; }
160
+
161
+ .reveal pre code {
162
+ display: block;
163
+ padding: 5px;
164
+ overflow: auto;
165
+ max-height: 400px;
166
+ word-wrap: normal; }
167
+
168
+ .reveal table {
169
+ margin: auto;
170
+ border-collapse: collapse;
171
+ border-spacing: 0; }
172
+
173
+ .reveal table th {
174
+ font-weight: bold; }
175
+
176
+ .reveal table th,
177
+ .reveal table td {
178
+ text-align: left;
179
+ padding: 0.2em 0.5em 0.2em 0.5em;
180
+ border-bottom: 1px solid; }
181
+
182
+ .reveal table th[align="center"],
183
+ .reveal table td[align="center"] {
184
+ text-align: center; }
185
+
186
+ .reveal table th[align="right"],
187
+ .reveal table td[align="right"] {
188
+ text-align: right; }
189
+
190
+ .reveal table tbody tr:last-child th,
191
+ .reveal table tbody tr:last-child td {
192
+ border-bottom: none; }
193
+
194
+ .reveal sup {
195
+ vertical-align: super;
196
+ font-size: smaller; }
197
+
198
+ .reveal sub {
199
+ vertical-align: sub;
200
+ font-size: smaller; }
201
+
202
+ .reveal small {
203
+ display: inline-block;
204
+ font-size: 0.6em;
205
+ line-height: 1.2em;
206
+ vertical-align: top; }
207
+
208
+ .reveal small * {
209
+ vertical-align: top; }
210
+
211
+ /*********************************************
212
+ * LINKS
213
+ *********************************************/
214
+ .reveal a {
215
+ color: #a23;
216
+ text-decoration: none;
217
+ -webkit-transition: color .15s ease;
218
+ -moz-transition: color .15s ease;
219
+ transition: color .15s ease; }
220
+
221
+ .reveal a:hover {
222
+ color: #dd5566;
223
+ text-shadow: none;
224
+ border: none; }
225
+
226
+ .reveal .roll span:after {
227
+ color: #fff;
228
+ background: #6a1520; }
229
+
230
+ /*********************************************
231
+ * IMAGES
232
+ *********************************************/
233
+ .reveal section img {
234
+ margin: 15px 0px;
235
+ background: rgba(255, 255, 255, 0.12);
236
+ border: 4px solid #eee;
237
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }
238
+
239
+ .reveal section img.plain {
240
+ border: 0;
241
+ box-shadow: none; }
242
+
243
+ .reveal a img {
244
+ -webkit-transition: all .15s linear;
245
+ -moz-transition: all .15s linear;
246
+ transition: all .15s linear; }
247
+
248
+ .reveal a:hover img {
249
+ background: rgba(255, 255, 255, 0.2);
250
+ border-color: #a23;
251
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }
252
+
253
+ /*********************************************
254
+ * NAVIGATION CONTROLS
255
+ *********************************************/
256
+ .reveal .controls {
257
+ color: #a23; }
258
+
259
+ /*********************************************
260
+ * PROGRESS BAR
261
+ *********************************************/
262
+ .reveal .progress {
263
+ background: rgba(0, 0, 0, 0.2);
264
+ color: #a23; }
265
+
266
+ .reveal .progress span {
267
+ -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
268
+ -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
269
+ transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }
270
+
271
+ /*********************************************
272
+ * PRINT BACKGROUND
273
+ *********************************************/
274
+ @media print {
275
+ .backgrounds {
276
+ background-color: #222; } }
277
+
278
+ .reveal p {
279
+ font-weight: 300;
280
+ text-shadow: 1px 1px #222; }
281
+
282
+ .reveal h1,
283
+ .reveal h2,
284
+ .reveal h3,
285
+ .reveal h4,
286
+ .reveal h5,
287
+ .reveal h6 {
288
+ font-weight: 700; }
289
+
290
+ .reveal p code {
291
+ background-color: #23241f;
292
+ display: inline-block;
293
+ border-radius: 7px; }
294
+
295
+ .reveal small code {
296
+ vertical-align: baseline; }