rasputin 0.15.0 → 0.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,423 +0,0 @@
1
- /*! normalize.css 2011-10-24T11:29 UTC - http://github.com/necolas/normalize.css */
2
-
3
- /* =============================================================================
4
- HTML5 display definitions
5
- ========================================================================== */
6
-
7
- /*
8
- * Corrects block display not defined in IE6/7/8/9 & FF3
9
- */
10
-
11
- article,
12
- aside,
13
- details,
14
- figcaption,
15
- figure,
16
- footer,
17
- header,
18
- hgroup,
19
- nav,
20
- section {
21
- display: block;
22
- }
23
-
24
- /*
25
- * Corrects inline-block display not defined in IE6/7/8/9 & FF3
26
- */
27
-
28
- audio,
29
- canvas,
30
- video {
31
- display: inline-block;
32
- *display: inline;
33
- *zoom: 1;
34
- }
35
-
36
- /*
37
- * Prevents modern browsers from displaying 'audio' without controls
38
- */
39
-
40
- audio:not([controls]) {
41
- display: none;
42
- }
43
-
44
- /*
45
- * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
46
- * Known issue: no IE6 support
47
- */
48
-
49
- [hidden] {
50
- display: none;
51
- }
52
-
53
-
54
- /* =============================================================================
55
- Base
56
- ========================================================================== */
57
-
58
- /*
59
- * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
60
- * http://clagnut.com/blog/348/#c790
61
- * 2. Keeps page centred in all browsers regardless of content height
62
- * 3. Prevents iOS text size adjust after orientation change, without disabling user zoom
63
- * www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
64
- */
65
-
66
- html {
67
- font-size: 100%; /* 1 */
68
- overflow-y: scroll; /* 2 */
69
- -webkit-text-size-adjust: 100%; /* 3 */
70
- -ms-text-size-adjust: 100%; /* 3 */
71
- }
72
-
73
- /*
74
- * Addresses margins handled incorrectly in IE6/7
75
- */
76
-
77
- body {
78
- margin: 0;
79
- }
80
-
81
- /*
82
- * Addresses font-family inconsistency between 'textarea' and other form elements.
83
- */
84
-
85
- body,
86
- button,
87
- input,
88
- select,
89
- textarea {
90
- font-family: sans-serif;
91
- }
92
-
93
-
94
- /* =============================================================================
95
- Links
96
- ========================================================================== */
97
-
98
- /*
99
- * Addresses outline displayed oddly in Chrome
100
- */
101
-
102
- a:focus {
103
- outline: thin dotted;
104
- }
105
-
106
- /*
107
- * Improves readability when focused and also mouse hovered in all browsers
108
- * people.opera.com/patrickl/experiments/keyboard/test
109
- */
110
-
111
- a:hover,
112
- a:active {
113
- outline: 0;
114
- }
115
-
116
-
117
- /* =============================================================================
118
- Typography
119
- ========================================================================== */
120
-
121
- /*
122
- * Addresses styling not present in IE7/8/9, S5, Chrome
123
- */
124
-
125
- abbr[title] {
126
- border-bottom: 1px dotted;
127
- }
128
-
129
- /*
130
- * Addresses style set to 'bolder' in FF3/4, S4/5, Chrome
131
- */
132
-
133
- b,
134
- strong {
135
- font-weight: bold;
136
- }
137
-
138
- blockquote {
139
- margin: 1em 40px;
140
- }
141
-
142
- /*
143
- * Addresses styling not present in S5, Chrome
144
- */
145
-
146
- dfn {
147
- font-style: italic;
148
- }
149
-
150
- /*
151
- * Addresses styling not present in IE6/7/8/9
152
- */
153
-
154
- mark {
155
- background: #ff0;
156
- color: #000;
157
- }
158
-
159
- /*
160
- * Corrects font family set oddly in IE6, S4/5, Chrome
161
- * en.wikipedia.org/wiki/User:Davidgothberg/Test59
162
- */
163
-
164
- pre,
165
- code,
166
- kbd,
167
- samp {
168
- font-family: monospace, serif;
169
- _font-family: 'courier new', monospace;
170
- font-size: 1em;
171
- }
172
-
173
- /*
174
- * Improves readability of pre-formatted text in all browsers
175
- */
176
-
177
- pre {
178
- white-space: pre;
179
- white-space: pre-wrap;
180
- word-wrap: break-word;
181
- }
182
-
183
- /*
184
- * 1. Addresses CSS quotes not supported in IE6/7
185
- * 2. Addresses quote property not supported in S4
186
- */
187
-
188
- /* 1 */
189
-
190
- q {
191
- quotes: none;
192
- }
193
-
194
- /* 2 */
195
-
196
- q:before,
197
- q:after {
198
- content: '';
199
- content: none;
200
- }
201
-
202
- small {
203
- font-size: 75%;
204
- }
205
-
206
- /*
207
- * Prevents sub and sup affecting line-height in all browsers
208
- * gist.github.com/413930
209
- */
210
-
211
- sub,
212
- sup {
213
- font-size: 75%;
214
- line-height: 0;
215
- position: relative;
216
- vertical-align: baseline;
217
- }
218
-
219
- sup {
220
- top: -0.5em;
221
- }
222
-
223
- sub {
224
- bottom: -0.25em;
225
- }
226
-
227
-
228
- /* =============================================================================
229
- Lists
230
- ========================================================================== */
231
-
232
- ul,
233
- ol {
234
- margin: 1em 0;
235
- padding: 0 0 0 40px;
236
- }
237
-
238
- dd {
239
- margin: 0 0 0 40px;
240
- }
241
-
242
- nav ul,
243
- nav ol {
244
- list-style: none;
245
- list-style-image: none;
246
- }
247
-
248
-
249
- /* =============================================================================
250
- Embedded content
251
- ========================================================================== */
252
-
253
- /*
254
- * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
255
- * 2. Improves image quality when scaled in IE7
256
- * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
257
- */
258
-
259
- img {
260
- border: 0; /* 1 */
261
- -ms-interpolation-mode: bicubic; /* 2 */
262
- }
263
-
264
- /*
265
- * Corrects overflow displayed oddly in IE9
266
- */
267
-
268
- svg:not(:root) {
269
- overflow: hidden;
270
- }
271
-
272
-
273
- /* =============================================================================
274
- Figures
275
- ========================================================================== */
276
-
277
- /*
278
- * Addresses margin not present in IE6/7/8/9, S5, O11
279
- */
280
-
281
- figure {
282
- margin: 0;
283
- }
284
-
285
-
286
- /* =============================================================================
287
- Forms
288
- ========================================================================== */
289
-
290
- /*
291
- * Corrects margin displayed oddly in IE6/7
292
- */
293
-
294
- form {
295
- margin: 0;
296
- }
297
-
298
- /*
299
- * Define consistent border, margin, and padding
300
- */
301
-
302
- fieldset {
303
- border: 1px solid #c0c0c0;
304
- margin: 0 2px;
305
- padding: 0.35em 0.625em 0.75em;
306
- }
307
-
308
- /*
309
- * 1. Corrects color not being inherited in IE6/7/8/9
310
- * 2. Corrects alignment displayed oddly in IE6/7
311
- */
312
-
313
- legend {
314
- border: 0; /* 1 */
315
- *margin-left: -7px; /* 2 */
316
- }
317
-
318
- /*
319
- * 1. Corrects font size not being inherited in all browsers
320
- * 2. Addresses margins set differently in IE6/7, FF3/4, S5, Chrome
321
- * 3. Improves appearance and consistency in all browsers
322
- */
323
-
324
- button,
325
- input,
326
- select,
327
- textarea {
328
- font-size: 100%; /* 1 */
329
- margin: 0; /* 2 */
330
- vertical-align: baseline; /* 3 */
331
- *vertical-align: middle; /* 3 */
332
- }
333
-
334
- /*
335
- * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
336
- */
337
-
338
- button,
339
- input {
340
- line-height: normal; /* 1 */
341
- }
342
-
343
- /*
344
- * 1. Improves usability and consistency of cursor style between image-type 'input' and others
345
- * 2. Corrects inability to style clickable 'input' types in iOS
346
- * 3. Corrects inner spacing displayed oddly in IE7 without effecting normal text inputs
347
- * Known issue: inner spacing remains in IE6
348
- */
349
-
350
- button,
351
- input[type="button"],
352
- input[type="reset"],
353
- input[type="submit"] {
354
- cursor: pointer; /* 1 */
355
- -webkit-appearance: button; /* 2 */
356
- *overflow: visible; /* 3 */
357
- }
358
-
359
- /*
360
- * 1. Addresses box sizing set to content-box in IE8/9
361
- * 2. Addresses excess padding in IE8/9
362
- */
363
-
364
- input[type="checkbox"],
365
- input[type="radio"] {
366
- box-sizing: border-box; /* 1 */
367
- padding: 0; /* 2 */
368
- }
369
-
370
- /*
371
- * 1. Addresses appearance set to searchfield in S5, Chrome
372
- * 2. Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof)
373
- */
374
-
375
- input[type="search"] {
376
- -webkit-appearance: textfield; /* 1 */
377
- -moz-box-sizing: content-box;
378
- -webkit-box-sizing: content-box; /* 2 */
379
- box-sizing: content-box;
380
- }
381
-
382
- /*
383
- * Corrects inner padding displayed oddly in S5, Chrome on OSX
384
- */
385
-
386
- input[type="search"]::-webkit-search-decoration {
387
- -webkit-appearance: none;
388
- }
389
-
390
- /*
391
- * Corrects inner padding and border displayed oddly in FF3/4
392
- * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
393
- */
394
-
395
- button::-moz-focus-inner,
396
- input::-moz-focus-inner {
397
- border: 0;
398
- padding: 0;
399
- }
400
-
401
- /*
402
- * 1. Removes default vertical scrollbar in IE6/7/8/9
403
- * 2. Improves readability and alignment in all browsers
404
- */
405
-
406
- textarea {
407
- overflow: auto; /* 1 */
408
- vertical-align: top; /* 2 */
409
- }
410
-
411
-
412
- /* =============================================================================
413
- Tables
414
- ========================================================================== */
415
-
416
- /*
417
- * Remove most spacing between table cells
418
- */
419
-
420
- table {
421
- border-collapse: collapse;
422
- border-spacing: 0;
423
- }