payment_info_rails 0.0.1

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.
@@ -0,0 +1,502 @@
1
+ /*! normalize.css 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
+ summary {
22
+ display: block;
23
+ }
24
+
25
+ /*
26
+ * Corrects inline-block display not defined in IE6/7/8/9 & FF3
27
+ */
28
+
29
+ audio,
30
+ canvas,
31
+ video {
32
+ display: inline-block;
33
+ *display: inline;
34
+ *zoom: 1;
35
+ }
36
+
37
+ /*
38
+ * Prevents modern browsers from displaying 'audio' without controls
39
+ */
40
+
41
+ audio:not([controls]) {
42
+ display: none;
43
+ }
44
+
45
+ /*
46
+ * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
47
+ * Known issue: no IE6 support
48
+ */
49
+
50
+ [hidden] {
51
+ display: none;
52
+ }
53
+
54
+
55
+ /* =============================================================================
56
+ Base
57
+ ========================================================================== */
58
+
59
+ /*
60
+ * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
61
+ * http://clagnut.com/blog/348/#c790
62
+ * 2. 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
+ -webkit-text-size-adjust: 100%; /* 2 */
69
+ -ms-text-size-adjust: 100%; /* 2 */
70
+ }
71
+
72
+ /*
73
+ * Addresses font-family inconsistency between 'textarea' and other form elements.
74
+ */
75
+
76
+ html,
77
+ button,
78
+ input,
79
+ select,
80
+ textarea {
81
+ font-family: sans-serif;
82
+ }
83
+
84
+ /*
85
+ * Addresses margins handled incorrectly in IE6/7
86
+ */
87
+
88
+ body {
89
+ margin: 0;
90
+ }
91
+
92
+
93
+ /* =============================================================================
94
+ Links
95
+ ========================================================================== */
96
+
97
+ /*
98
+ * Addresses outline displayed oddly in Chrome
99
+ */
100
+
101
+ a:focus {
102
+ outline: thin dotted;
103
+ }
104
+
105
+ /*
106
+ * Improves readability when focused and also mouse hovered in all browsers
107
+ * people.opera.com/patrickl/experiments/keyboard/test
108
+ */
109
+
110
+ a:hover,
111
+ a:active {
112
+ outline: 0;
113
+ }
114
+
115
+
116
+ /* =============================================================================
117
+ Typography
118
+ ========================================================================== */
119
+
120
+ /*
121
+ * Addresses font sizes and margins set differently in IE6/7
122
+ * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
123
+ */
124
+
125
+ h1 {
126
+ font-size: 2em;
127
+ margin: 0;
128
+ }
129
+
130
+ h2 {
131
+ font-size: 1.5em;
132
+ margin: 0;
133
+ }
134
+
135
+ h3 {
136
+ font-size: 1.17em;
137
+ margin: 0;
138
+ }
139
+
140
+ h4 {
141
+ font-size: 1em;
142
+ margin: 0;
143
+ }
144
+
145
+ h5 {
146
+ font-size: 0.83em;
147
+ margin: 0;
148
+ }
149
+
150
+ h6 {
151
+ font-size: 0.75em;
152
+ margin: 0;
153
+ }
154
+
155
+ /*
156
+ * Addresses styling not present in IE7/8/9, S5, Chrome
157
+ */
158
+
159
+ abbr[title] {
160
+ border-bottom: 1px dotted;
161
+ }
162
+
163
+ /*
164
+ * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
165
+ */
166
+
167
+ b,
168
+ strong {
169
+ font-weight: bold;
170
+ }
171
+
172
+ blockquote {
173
+ margin: 1em 40px;
174
+ }
175
+
176
+ /*
177
+ * Addresses styling not present in S5, Chrome
178
+ */
179
+
180
+ dfn {
181
+ font-style: italic;
182
+ }
183
+
184
+ /*
185
+ * Addresses styling not present in IE6/7/8/9
186
+ */
187
+
188
+ mark {
189
+ background: #ff0;
190
+ color: #000;
191
+ }
192
+
193
+ /*
194
+ * Addresses margins set differently in IE6/7
195
+ */
196
+
197
+ p,
198
+ pre {
199
+ margin: 1em 0;
200
+ }
201
+
202
+ /*
203
+ * Corrects font family set oddly in IE6, S4/5, Chrome
204
+ * en.wikipedia.org/wiki/User:Davidgothberg/Test59
205
+ */
206
+
207
+ pre,
208
+ code,
209
+ kbd,
210
+ samp {
211
+ font-family: monospace, serif;
212
+ _font-family: 'courier new', monospace;
213
+ font-size: 1em;
214
+ }
215
+
216
+ /*
217
+ * Improves readability of pre-formatted text in all browsers
218
+ */
219
+
220
+ pre {
221
+ white-space: pre;
222
+ white-space: pre-wrap;
223
+ word-wrap: break-word;
224
+ }
225
+
226
+ /*
227
+ * 1. Addresses CSS quotes not supported in IE6/7
228
+ * 2. Addresses quote property not supported in S4
229
+ */
230
+
231
+ /* 1 */
232
+
233
+ q {
234
+ quotes: none;
235
+ }
236
+
237
+ /* 2 */
238
+
239
+ q:before,
240
+ q:after {
241
+ content: '';
242
+ content: none;
243
+ }
244
+
245
+ small {
246
+ font-size: 75%;
247
+ }
248
+
249
+ /*
250
+ * Prevents sub and sup affecting line-height in all browsers
251
+ * gist.github.com/413930
252
+ */
253
+
254
+ sub,
255
+ sup {
256
+ font-size: 75%;
257
+ line-height: 0;
258
+ position: relative;
259
+ vertical-align: baseline;
260
+ }
261
+
262
+ sup {
263
+ top: -0.5em;
264
+ }
265
+
266
+ sub {
267
+ bottom: -0.25em;
268
+ }
269
+
270
+
271
+ /* =============================================================================
272
+ Lists
273
+ ========================================================================== */
274
+
275
+ /*
276
+ * Addresses margins set differently in IE6/7
277
+ */
278
+
279
+ dl,
280
+ menu,
281
+ ol,
282
+ ul {
283
+ margin: 1em 0;
284
+ }
285
+
286
+ dd {
287
+ margin: 0 0 0 40px;
288
+ }
289
+
290
+ /*
291
+ * Addresses paddings set differently in IE6/7
292
+ */
293
+
294
+ menu,
295
+ ol,
296
+ ul {
297
+ padding: 0 0 0 40px;
298
+ }
299
+
300
+ /*
301
+ * Corrects list images handled incorrectly in IE7
302
+ */
303
+
304
+ nav ul,
305
+ nav ol {
306
+ list-style: none;
307
+ list-style-image: none;
308
+ }
309
+
310
+
311
+ /* =============================================================================
312
+ Embedded content
313
+ ========================================================================== */
314
+
315
+ /*
316
+ * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
317
+ * 2. Improves image quality when scaled in IE7
318
+ * code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
319
+ */
320
+
321
+ img {
322
+ border: 0; /* 1 */
323
+ -ms-interpolation-mode: bicubic; /* 2 */
324
+ }
325
+
326
+ /*
327
+ * Corrects overflow displayed oddly in IE9
328
+ */
329
+
330
+ svg:not(:root) {
331
+ overflow: hidden;
332
+ }
333
+
334
+
335
+ /* =============================================================================
336
+ Figures
337
+ ========================================================================== */
338
+
339
+ /*
340
+ * Addresses margin not present in IE6/7/8/9, S5, O11
341
+ */
342
+
343
+ figure {
344
+ margin: 0;
345
+ }
346
+
347
+
348
+ /* =============================================================================
349
+ Forms
350
+ ========================================================================== */
351
+
352
+ /*
353
+ * Corrects margin displayed oddly in IE6/7
354
+ */
355
+
356
+ form {
357
+ margin: 0;
358
+ }
359
+
360
+ /*
361
+ * Define consistent border, margin, and padding
362
+ */
363
+
364
+ fieldset {
365
+ border: 1px solid #c0c0c0;
366
+ margin: 0 2px;
367
+ padding: 0.35em 0.625em 0.75em;
368
+ }
369
+
370
+ /*
371
+ * 1. Corrects color not being inherited in IE6/7/8/9
372
+ * 2. Corrects text not wrapping in FF3
373
+ * 3. Corrects alignment displayed oddly in IE6/7
374
+ */
375
+
376
+ legend {
377
+ border: 0; /* 1 */
378
+ padding: 0;
379
+ white-space: normal; /* 2 */
380
+ *margin-left: -7px; /* 3 */
381
+ }
382
+
383
+ /*
384
+ * 1. Corrects font size not being inherited in all browsers
385
+ * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
386
+ * 3. Improves appearance and consistency in all browsers
387
+ */
388
+
389
+ button,
390
+ input,
391
+ select,
392
+ textarea {
393
+ font-size: 100%; /* 1 */
394
+ margin: 0; /* 2 */
395
+ vertical-align: baseline; /* 3 */
396
+ *vertical-align: middle; /* 3 */
397
+ }
398
+
399
+ /*
400
+ * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
401
+ */
402
+
403
+ button,
404
+ input {
405
+ line-height: normal; /* 1 */
406
+ }
407
+
408
+ /*
409
+ * 1. Improves usability and consistency of cursor style between image-type 'input' and others
410
+ * 2. Corrects inability to style clickable 'input' types in iOS
411
+ * 3. Removes inner spacing in IE7 without affecting normal text inputs
412
+ * Known issue: inner spacing remains in IE6
413
+ */
414
+
415
+ button,
416
+ input[type="button"],
417
+ input[type="reset"],
418
+ input[type="submit"] {
419
+ cursor: pointer; /* 1 */
420
+ -webkit-appearance: button; /* 2 */
421
+ *overflow: visible; /* 3 */
422
+ }
423
+
424
+ /*
425
+ * Re-set default cursor for disabled elements
426
+ */
427
+
428
+ button[disabled],
429
+ input[disabled] {
430
+ cursor: default;
431
+ }
432
+
433
+ /*
434
+ * 1. Addresses box sizing set to content-box in IE8/9
435
+ * 2. Removes excess padding in IE8/9
436
+ * 3. Removes excess padding in IE7
437
+ Known issue: excess padding remains in IE6
438
+ */
439
+
440
+ input[type="checkbox"],
441
+ input[type="radio"] {
442
+ box-sizing: border-box; /* 1 */
443
+ padding: 0; /* 2 */
444
+ *height: 13px; /* 3 */
445
+ *width: 13px; /* 3 */
446
+ }
447
+
448
+ /*
449
+ * 1. Addresses appearance set to searchfield in S5, Chrome
450
+ * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
451
+ */
452
+
453
+ input[type="search"] {
454
+ -webkit-appearance: textfield; /* 1 */
455
+ -moz-box-sizing: content-box;
456
+ -webkit-box-sizing: content-box; /* 2 */
457
+ box-sizing: content-box;
458
+ }
459
+
460
+ /*
461
+ * Removes inner padding and search cancel button in S5, Chrome on OS X
462
+ */
463
+
464
+ input[type="search"]::-webkit-search-decoration,
465
+ input[type="search"]::-webkit-search-cancel-button {
466
+ -webkit-appearance: none;
467
+ }
468
+
469
+ /*
470
+ * Removes inner padding and border in FF3+
471
+ * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
472
+ */
473
+
474
+ button::-moz-focus-inner,
475
+ input::-moz-focus-inner {
476
+ border: 0;
477
+ padding: 0;
478
+ }
479
+
480
+ /*
481
+ * 1. Removes default vertical scrollbar in IE6/7/8/9
482
+ * 2. Improves readability and alignment in all browsers
483
+ */
484
+
485
+ textarea {
486
+ overflow: auto; /* 1 */
487
+ vertical-align: top; /* 2 */
488
+ }
489
+
490
+
491
+ /* =============================================================================
492
+ Tables
493
+ ========================================================================== */
494
+
495
+ /*
496
+ * Remove most spacing between table cells
497
+ */
498
+
499
+ table {
500
+ border-collapse: collapse;
501
+ border-spacing: 0;
502
+ }