pure-css-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 Balazs Kutil
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,34 @@
1
+ # Pure CSS for Rails Asset Pipeline
2
+
3
+ Based on [pure.css](http://purecss.io/) version 0.1.0.
4
+
5
+ ## Install
6
+
7
+ 1. Add this to your Gemfile
8
+
9
+ `gem "pure-css-rails"`
10
+
11
+ 2. Run
12
+
13
+ `$ bundle`
14
+
15
+ 3. Add `pure` to application.css (Use `pure-nr` for non-responsive version)
16
+
17
+
18
+ `*= pure`
19
+
20
+ 4. Profit!
21
+
22
+ You don't need to add `normalize.css`, it is already included.
23
+
24
+ ## Contribute
25
+
26
+ In the case you find out that something is missing or does not work in a way
27
+ you'd expect, please file an issue through GitHub.
28
+
29
+ If you know how to fix the problem, please submit a pull request (preferrably
30
+ from a topic branch) - patches are always welcome.
31
+
32
+ Otherwise, just let me know and I'll see how the issue can be resolved. Other
33
+ contributions (correcting or extending the docs / spreading the word) are also
34
+ welcome.
@@ -0,0 +1,20 @@
1
+ -----BEGIN CERTIFICATE-----
2
+ MIIDOjCCAiKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBDMRUwEwYDVQQDDAxrdXRp
3
+ bC5iYWxhenMxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkW
4
+ A2NvbTAeFw0xMzA1MzEyMjM2NTlaFw0xNDA1MzEyMjM2NTlaMEMxFTATBgNVBAMM
5
+ DGt1dGlsLmJhbGF6czEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPy
6
+ LGQBGRYDY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA7pzyD0/y
7
+ h8JuQ+bNkgqXj4Zevm3sBS6xOZgaaKUXHhaZyxl7HGgk4lOkzWjmhwSA40cMg27I
8
+ QykB5CUUF1HmzVSRREkTaKjEaukIr1naNVMfsqxx2Qll2+hCHrua+aeef6hP/Vjh
9
+ yISyT+7BMD3wq740I6DjRZrOCVyRulc/d+dVAB0zANtHjnoyLuySB05sfpTWxXpv
10
+ abw6tvAyfKK2jX5e0M3fKRyfdmAJXVJFwVf+CPdT3NfxGdf/UUBi3dFv1Oig7CvQ
11
+ 8DGr++4WWwisLE6y3fVWf1yBTexBaPOxZ76BlB/e4yyWHIOJoASio1fxVXVB6krK
12
+ x9hXxh7YIkLPewIDAQABozkwNzAJBgNVHRMEAjAAMB0GA1UdDgQWBBQsmNtLI9Si
13
+ nh6gOtRM4KA+tA43zDALBgNVHQ8EBAMCBLAwDQYJKoZIhvcNAQEFBQADggEBAJw4
14
+ ClrvrQNQE0kc0lZqGpNJgw1/6xHx5Xa0sRYRKNPjIhiieMIfDayfc2/bP7EX/PAf
15
+ VzXIHiMajmIqajKSnG93vc5gKU8dBibfZd3wNkU5BOEnpEl/QOAa5KbIrsUIyY4Y
16
+ 1F0/B8FSc3sFzvVZKRyrf0vyqYSAUA8xgNxabEGR83pBUXj2LyneiRlSGUi5EaO3
17
+ 9vGYNFHv79MkAeHlcv/8FOrNXuDQLv4Wi9Hyrsnk2vVDvGdr13GfK2nK+SQMW6mN
18
+ pn5IzQKNZrsUST77rbbNtlMJ6CqYSEEkvQzIBval3MmaWy3tQhPHoLizWAr+uMPX
19
+ XkjBTWhvz0PoQzugPm4=
20
+ -----END CERTIFICATE-----
@@ -0,0 +1,5 @@
1
+ module PureCSS
2
+ module Rails
3
+ VERSION = "0.0.1"
4
+ end
5
+ end
@@ -0,0 +1,8 @@
1
+ require "pure-css-rails/version"
2
+
3
+ module PureCSS
4
+ module Rails
5
+ class Engine < ::Rails::Engine
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,20 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "pure-css-rails/version"
5
+
6
+ Gem::Specification.new do |gem|
7
+ gem.name = "pure-css-rails"
8
+ gem.version = PureCSS::Rails::VERSION
9
+ gem.authors = ["Balazs Kutil"]
10
+ gem.email = ["kutil.balazs@gmail.com"]
11
+ gem.description = %q{Pure CSS for Rails Asset Pipeline}
12
+ gem.summary = %q{Pure CSS for Rails Asset Pipeline}
13
+ gem.homepage = "https://github.com/bkutil/pure-css-rails"
14
+ # gem.signing_key = '/somewhere/inagalaxy/far/far/away/gem-private_key.pem'
15
+ gem.signing_key = '/home/bkutil/gem-private_key.pem'
16
+ gem.cert_chain = ['gem-public_cert.pem']
17
+
18
+ gem.files = `git ls-files`.split($/)
19
+ gem.require_paths = ["lib"]
20
+ end
@@ -0,0 +1,1447 @@
1
+ /*!
2
+ Pure v0.1.1-pre
3
+ Copyright 2013 Yahoo! Inc. All rights reserved.
4
+ Licensed under the BSD License.
5
+ https://github.com/yui/pure/blob/master/LICENSE.md
6
+ */
7
+ /*!
8
+ normalize.css v1.1.2 | MIT License | git.io/normalize
9
+ Copyright (c) Nicolas Gallagher and Jonathan Neal
10
+ */
11
+ /* THIS FILE IS GENERATED BY A BUILD SCRIPT - DO NOT EDIT! */
12
+ /*! normalize.css v1.1.2 | MIT License | git.io/normalize */
13
+
14
+ /* ==========================================================================
15
+ HTML5 display definitions
16
+ ========================================================================== */
17
+
18
+ /**
19
+ * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
20
+ */
21
+
22
+ article,
23
+ aside,
24
+ details,
25
+ figcaption,
26
+ figure,
27
+ footer,
28
+ header,
29
+ hgroup,
30
+ main,
31
+ nav,
32
+ section,
33
+ summary {
34
+ display: block;
35
+ }
36
+
37
+ /**
38
+ * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
39
+ */
40
+
41
+ audio,
42
+ canvas,
43
+ video {
44
+ display: inline-block;
45
+ *display: inline;
46
+ *zoom: 1;
47
+ }
48
+
49
+ /**
50
+ * Prevent modern browsers from displaying `audio` without controls.
51
+ * Remove excess height in iOS 5 devices.
52
+ */
53
+
54
+ audio:not([controls]) {
55
+ display: none;
56
+ height: 0;
57
+ }
58
+
59
+ /**
60
+ * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
61
+ * Known issue: no IE 6 support.
62
+ */
63
+
64
+ [hidden] {
65
+ display: none;
66
+ }
67
+
68
+ /* ==========================================================================
69
+ Base
70
+ ========================================================================== */
71
+
72
+ /**
73
+ * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
74
+ * `em` units.
75
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
76
+ * user zoom.
77
+ */
78
+
79
+ html {
80
+ font-size: 100%; /* 1 */
81
+ -ms-text-size-adjust: 100%; /* 2 */
82
+ -webkit-text-size-adjust: 100%; /* 2 */
83
+ }
84
+
85
+ /**
86
+ * Address `font-family` inconsistency between `textarea` and other form
87
+ * elements.
88
+ */
89
+
90
+ html,
91
+ button,
92
+ input,
93
+ select,
94
+ textarea {
95
+ font-family: sans-serif;
96
+ }
97
+
98
+ /**
99
+ * Address margins handled incorrectly in IE 6/7.
100
+ */
101
+
102
+ body {
103
+ margin: 0;
104
+ }
105
+
106
+ /* ==========================================================================
107
+ Links
108
+ ========================================================================== */
109
+
110
+ /**
111
+ * Address `outline` inconsistency between Chrome and other browsers.
112
+ */
113
+
114
+ a:focus {
115
+ outline: thin dotted;
116
+ }
117
+
118
+ /**
119
+ * Improve readability when focused and also mouse hovered in all browsers.
120
+ */
121
+
122
+ a:active,
123
+ a:hover {
124
+ outline: 0;
125
+ }
126
+
127
+ /* ==========================================================================
128
+ Typography
129
+ ========================================================================== */
130
+
131
+ /**
132
+ * Address font sizes and margins set differently in IE 6/7.
133
+ * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
134
+ * and Chrome.
135
+ */
136
+
137
+ h1 {
138
+ font-size: 2em;
139
+ margin: 0.67em 0;
140
+ }
141
+
142
+ h2 {
143
+ font-size: 1.5em;
144
+ margin: 0.83em 0;
145
+ }
146
+
147
+ h3 {
148
+ font-size: 1.17em;
149
+ margin: 1em 0;
150
+ }
151
+
152
+ h4 {
153
+ font-size: 1em;
154
+ margin: 1.33em 0;
155
+ }
156
+
157
+ h5 {
158
+ font-size: 0.83em;
159
+ margin: 1.67em 0;
160
+ }
161
+
162
+ h6 {
163
+ font-size: 0.67em;
164
+ margin: 2.33em 0;
165
+ }
166
+
167
+ /**
168
+ * Address styling not present in IE 7/8/9, Safari 5, and Chrome.
169
+ */
170
+
171
+ abbr[title] {
172
+ border-bottom: 1px dotted;
173
+ }
174
+
175
+ /**
176
+ * Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
177
+ */
178
+
179
+ b,
180
+ strong {
181
+ font-weight: bold;
182
+ }
183
+
184
+ blockquote {
185
+ margin: 1em 40px;
186
+ }
187
+
188
+ /**
189
+ * Address styling not present in Safari 5 and Chrome.
190
+ */
191
+
192
+ dfn {
193
+ font-style: italic;
194
+ }
195
+
196
+ /**
197
+ * Address differences between Firefox and other browsers.
198
+ * Known issue: no IE 6/7 normalization.
199
+ */
200
+
201
+ hr {
202
+ -moz-box-sizing: content-box;
203
+ box-sizing: content-box;
204
+ height: 0;
205
+ }
206
+
207
+ /**
208
+ * Address styling not present in IE 6/7/8/9.
209
+ */
210
+
211
+ mark {
212
+ background: #ff0;
213
+ color: #000;
214
+ }
215
+
216
+ /**
217
+ * Address margins set differently in IE 6/7.
218
+ */
219
+
220
+ p,
221
+ pre {
222
+ margin: 1em 0;
223
+ }
224
+
225
+ /**
226
+ * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
227
+ */
228
+
229
+ code,
230
+ kbd,
231
+ pre,
232
+ samp {
233
+ font-family: monospace, serif;
234
+ _font-family: 'courier new', monospace;
235
+ font-size: 1em;
236
+ }
237
+
238
+ /**
239
+ * Improve readability of pre-formatted text in all browsers.
240
+ */
241
+
242
+ pre {
243
+ white-space: pre;
244
+ white-space: pre-wrap;
245
+ word-wrap: break-word;
246
+ }
247
+
248
+ /**
249
+ * Address CSS quotes not supported in IE 6/7.
250
+ */
251
+
252
+ q {
253
+ quotes: none;
254
+ }
255
+
256
+ /**
257
+ * Address `quotes` property not supported in Safari 4.
258
+ */
259
+
260
+ q:before,
261
+ q:after {
262
+ content: '';
263
+ content: none;
264
+ }
265
+
266
+ /**
267
+ * Address inconsistent and variable font size in all browsers.
268
+ */
269
+
270
+ small {
271
+ font-size: 80%;
272
+ }
273
+
274
+ /**
275
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
276
+ */
277
+
278
+ sub,
279
+ sup {
280
+ font-size: 75%;
281
+ line-height: 0;
282
+ position: relative;
283
+ vertical-align: baseline;
284
+ }
285
+
286
+ sup {
287
+ top: -0.5em;
288
+ }
289
+
290
+ sub {
291
+ bottom: -0.25em;
292
+ }
293
+
294
+ /* ==========================================================================
295
+ Lists
296
+ ========================================================================== */
297
+
298
+ /**
299
+ * Address margins set differently in IE 6/7.
300
+ */
301
+
302
+ dl,
303
+ menu,
304
+ ol,
305
+ ul {
306
+ margin: 1em 0;
307
+ }
308
+
309
+ dd {
310
+ margin: 0 0 0 40px;
311
+ }
312
+
313
+ /**
314
+ * Address paddings set differently in IE 6/7.
315
+ */
316
+
317
+ menu,
318
+ ol,
319
+ ul {
320
+ padding: 0 0 0 40px;
321
+ }
322
+
323
+ /**
324
+ * Correct list images handled incorrectly in IE 7.
325
+ */
326
+
327
+ nav ul,
328
+ nav ol {
329
+ list-style: none;
330
+ list-style-image: none;
331
+ }
332
+
333
+ /* ==========================================================================
334
+ Embedded content
335
+ ========================================================================== */
336
+
337
+ /**
338
+ * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
339
+ * 2. Improve image quality when scaled in IE 7.
340
+ */
341
+
342
+ img {
343
+ border: 0; /* 1 */
344
+ -ms-interpolation-mode: bicubic; /* 2 */
345
+ }
346
+
347
+ /**
348
+ * Correct overflow displayed oddly in IE 9.
349
+ */
350
+
351
+ svg:not(:root) {
352
+ overflow: hidden;
353
+ }
354
+
355
+ /* ==========================================================================
356
+ Figures
357
+ ========================================================================== */
358
+
359
+ /**
360
+ * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
361
+ */
362
+
363
+ figure {
364
+ margin: 0;
365
+ }
366
+
367
+ /* ==========================================================================
368
+ Forms
369
+ ========================================================================== */
370
+
371
+ /**
372
+ * Correct margin displayed oddly in IE 6/7.
373
+ */
374
+
375
+ form {
376
+ margin: 0;
377
+ }
378
+
379
+ /**
380
+ * Define consistent border, margin, and padding.
381
+ */
382
+
383
+ fieldset {
384
+ border: 1px solid #c0c0c0;
385
+ margin: 0 2px;
386
+ padding: 0.35em 0.625em 0.75em;
387
+ }
388
+
389
+ /**
390
+ * 1. Correct color not being inherited in IE 6/7/8/9.
391
+ * 2. Correct text not wrapping in Firefox 3.
392
+ * 3. Correct alignment displayed oddly in IE 6/7.
393
+ */
394
+
395
+ legend {
396
+ border: 0; /* 1 */
397
+ padding: 0;
398
+ white-space: normal; /* 2 */
399
+ *margin-left: -7px; /* 3 */
400
+ }
401
+
402
+ /**
403
+ * 1. Correct font size not being inherited in all browsers.
404
+ * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
405
+ * and Chrome.
406
+ * 3. Improve appearance and consistency in all browsers.
407
+ */
408
+
409
+ button,
410
+ input,
411
+ select,
412
+ textarea {
413
+ font-size: 100%; /* 1 */
414
+ margin: 0; /* 2 */
415
+ vertical-align: baseline; /* 3 */
416
+ *vertical-align: middle; /* 3 */
417
+ }
418
+
419
+ /**
420
+ * Address Firefox 3+ setting `line-height` on `input` using `!important` in
421
+ * the UA stylesheet.
422
+ */
423
+
424
+ button,
425
+ input {
426
+ line-height: normal;
427
+ }
428
+
429
+ /**
430
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
431
+ * All other form control elements do not inherit `text-transform` values.
432
+ * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
433
+ * Correct `select` style inheritance in Firefox 4+ and Opera.
434
+ */
435
+
436
+ button,
437
+ select {
438
+ text-transform: none;
439
+ }
440
+
441
+ /**
442
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
443
+ * and `video` controls.
444
+ * 2. Correct inability to style clickable `input` types in iOS.
445
+ * 3. Improve usability and consistency of cursor style between image-type
446
+ * `input` and others.
447
+ * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
448
+ * Known issue: inner spacing remains in IE 6.
449
+ */
450
+
451
+ button,
452
+ html input[type="button"], /* 1 */
453
+ input[type="reset"],
454
+ input[type="submit"] {
455
+ -webkit-appearance: button; /* 2 */
456
+ cursor: pointer; /* 3 */
457
+ *overflow: visible; /* 4 */
458
+ }
459
+
460
+ /**
461
+ * Re-set default cursor for disabled elements.
462
+ */
463
+
464
+ button[disabled],
465
+ html input[disabled] {
466
+ cursor: default;
467
+ }
468
+
469
+ /**
470
+ * 1. Address box sizing set to content-box in IE 8/9.
471
+ * 2. Remove excess padding in IE 8/9.
472
+ * 3. Remove excess padding in IE 7.
473
+ * Known issue: excess padding remains in IE 6.
474
+ */
475
+
476
+ input[type="checkbox"],
477
+ input[type="radio"] {
478
+ box-sizing: border-box; /* 1 */
479
+ padding: 0; /* 2 */
480
+ *height: 13px; /* 3 */
481
+ *width: 13px; /* 3 */
482
+ }
483
+
484
+ /**
485
+ * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
486
+ * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
487
+ * (include `-moz` to future-proof).
488
+ */
489
+
490
+ input[type="search"] {
491
+ -webkit-appearance: textfield; /* 1 */
492
+ -moz-box-sizing: content-box;
493
+ -webkit-box-sizing: content-box; /* 2 */
494
+ box-sizing: content-box;
495
+ }
496
+
497
+ /**
498
+ * Remove inner padding and search cancel button in Safari 5 and Chrome
499
+ * on OS X.
500
+ */
501
+
502
+ input[type="search"]::-webkit-search-cancel-button,
503
+ input[type="search"]::-webkit-search-decoration {
504
+ -webkit-appearance: none;
505
+ }
506
+
507
+ /**
508
+ * Remove inner padding and border in Firefox 3+.
509
+ */
510
+
511
+ button::-moz-focus-inner,
512
+ input::-moz-focus-inner {
513
+ border: 0;
514
+ padding: 0;
515
+ }
516
+
517
+ /**
518
+ * 1. Remove default vertical scrollbar in IE 6/7/8/9.
519
+ * 2. Improve readability and alignment in all browsers.
520
+ */
521
+
522
+ textarea {
523
+ overflow: auto; /* 1 */
524
+ vertical-align: top; /* 2 */
525
+ }
526
+
527
+ /* ==========================================================================
528
+ Tables
529
+ ========================================================================== */
530
+
531
+ /**
532
+ * Remove most spacing between table cells.
533
+ */
534
+
535
+ table {
536
+ border-collapse: collapse;
537
+ border-spacing: 0;
538
+ }
539
+
540
+ .pure-button {
541
+ /* Structure */
542
+ display: inline-block;
543
+ *display: inline; /*IE 6/7*/
544
+ zoom: 1;
545
+ line-height: normal;
546
+ white-space: nowrap;
547
+ vertical-align: baseline;
548
+ text-align: center;
549
+ cursor: pointer;
550
+ -webkit-user-drag: none;
551
+ -webkit-user-select: none;
552
+ -moz-user-select: none;
553
+ user-select: none;
554
+ }
555
+
556
+
557
+ /* Firefox: Get rid of the inner focus border */
558
+ .pure-button::-moz-focus-inner{
559
+ padding: 0;
560
+ border: 0;
561
+ }
562
+
563
+ a:focus {
564
+ outline: none;
565
+ }
566
+
567
+
568
+ .pure-button {
569
+ font-size: 100%;
570
+ *font-size: 90%; /*IE 6/7 - To reduce IE's oversized button text*/
571
+ *overflow: visible; /*IE 6/7 - Because of IE's overly large left/right padding on buttons */
572
+ padding: 0.5em 1.5em 0.5em;
573
+ color: #444; /* rgba not supported (IE 8) */
574
+ color: rgba(0, 0, 0, 0.80); /* rgba supported */
575
+ *color: #444; /* IE 6 & 7 */
576
+ border: 1px solid #999; /*IE 6/7/8*/
577
+ border: none rgba(0, 0, 0, 0); /*IE9 + everything else*/
578
+ background-color: #E6E6E6;
579
+ text-decoration: none;
580
+ -webkit-border-radius: 2px;
581
+ -moz-border-radius: 2px;
582
+ border-radius: 2px;
583
+ -webkit-font-smoothing: antialiased;
584
+ /* Transitions */
585
+ -webkit-transition: 0.1s linear -webkit-box-shadow;
586
+ -moz-transition: 0.1s linear -moz-box-shadow;
587
+ -ms-transition: 0.1s linear box-shadow;
588
+ -o-transition: 0.1s linear box-shadow;
589
+ transition: 0.1s linear box-shadow;
590
+ }
591
+
592
+
593
+ .pure-button-hover,
594
+ .pure-button:hover {
595
+
596
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#00000000', GradientType=0);
597
+
598
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0, 0.05)), to(rgba(0,0,0, 0.05)));
599
+ background-image: -webkit-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.15));
600
+ background-image: -moz-linear-gradient(top, rgba(0,0,0, 0.05) 0%, rgba(0,0,0, 0.05));
601
+ background-image: -ms-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.15));
602
+ background-image: -o-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.05));
603
+ background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.05));
604
+ }
605
+
606
+ .pure-button-active,
607
+ .pure-button:active {
608
+ -webkit-box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
609
+ -moz-box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
610
+ box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
611
+ }
612
+
613
+ .pure-button[disabled],
614
+ .pure-button-disabled,
615
+ .pure-button-disabled:hover,
616
+ .pure-button-disabled:active {
617
+ border: none;
618
+ background-image: none;
619
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
620
+ filter: alpha(opacity=40);
621
+ -khtml-opacity: 0.40;
622
+ -moz-opacity: 0.40;
623
+ opacity: 0.40;
624
+ cursor: not-allowed;
625
+ box-shadow: none;
626
+ }
627
+
628
+ .pure-button-hidden {
629
+ display:none;
630
+ }
631
+
632
+ /* Firefox: Get rid of the inner focus border */
633
+ .pure-button::-moz-focus-inner{
634
+ padding: 0;
635
+ border: 0;
636
+ }
637
+
638
+
639
+ /* Sam */
640
+ .pure-button-primary,
641
+ .pure-button-selected,
642
+ a.pure-button-primary,
643
+ a.pure-button-selected {
644
+ background-color: rgb(0, 120, 231);
645
+ color: #fff;
646
+ }
647
+
648
+ .pure-button:-moz-focusring {
649
+ outline-color: rgba(0, 0, 0, 0.85);
650
+ }
651
+
652
+ /* This page has Normalize.css form-specific style rules applied to a .pure-form context */
653
+
654
+ /* ==========
655
+ Forms Core
656
+ =========*/
657
+
658
+ /*
659
+ * Corrects margin displayed oddly in IE 6/7.
660
+ */
661
+
662
+ .pure-form {
663
+ margin: 0;
664
+ }
665
+
666
+ /*
667
+ * Define consistent border, margin, and padding.
668
+ */
669
+
670
+ .pure-form fieldset {
671
+ border: 1px solid #c0c0c0;
672
+ margin: 0 2px;
673
+ padding: 0.35em 0.625em 0.75em;
674
+ }
675
+
676
+ /*
677
+ * 1. Corrects color not being inherited in IE 6/7/8/9.
678
+ * 2. Corrects text not wrapping in Firefox 3.
679
+ * 3. Corrects alignment displayed oddly in IE 6/7.
680
+ */
681
+
682
+ .pure-form legend {
683
+ border: 0; /* 1 */
684
+ padding: 0;
685
+ white-space: normal; /* 2 */
686
+ *margin-left: -7px; /* 3 */
687
+ }
688
+
689
+ /*
690
+ * 1. Corrects font size not being inherited in all browsers.
691
+ * 2. Addresses margins set differently in IE 6/7, Firefox 3+, Safari 5,
692
+ * and Chrome.
693
+ * 3. Improves appearance and consistency in all browsers.
694
+ */
695
+
696
+ .pure-form button,
697
+ .pure-form input,
698
+ .pure-form select,
699
+ .pure-form textarea {
700
+ font-size: 100%; /* 1 */
701
+ margin: 0; /* 2 */
702
+ vertical-align: baseline; /* 3 */
703
+ *vertical-align: middle; /* 3 */
704
+ }
705
+
706
+ /*
707
+ * Addresses Firefox 3+ setting `line-height` on `input` using `!important` in
708
+ * the UA stylesheet.
709
+ */
710
+
711
+ .pure-form button,
712
+ .pure-form input {
713
+ line-height: normal;
714
+ }
715
+
716
+ /*
717
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
718
+ * and `video` controls.
719
+ * 2. Corrects inability to style clickable `input` types in iOS.
720
+ * 3. Improves usability and consistency of cursor style between image-type
721
+ * `input` and others.
722
+ * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
723
+ * Known issue: inner spacing remains in IE 6.
724
+ */
725
+
726
+ .pure-form button,
727
+ .pure-form input[type="button"], /* 1 */
728
+ .pure-form input[type="reset"],
729
+ .pure-form input[type="submit"] {
730
+ -webkit-appearance: button; /* 2 */
731
+ cursor: pointer; /* 3 */
732
+ *overflow: visible; /* 4 */
733
+ }
734
+
735
+ /*
736
+ * Re-set default cursor for disabled elements.
737
+ */
738
+
739
+ .pure-form button[disabled],
740
+ .pure-form input[disabled] {
741
+ cursor: default;
742
+ }
743
+
744
+ /*
745
+ * 1. Addresses box sizing set to content-box in IE 8/9.
746
+ * 2. Removes excess padding in IE 8/9.
747
+ * 3. Removes excess padding in IE 7.
748
+ * Known issue: excess padding remains in IE 6.
749
+ */
750
+
751
+ .pure-form input[type="checkbox"],
752
+ .pure-form input[type="radio"] {
753
+ box-sizing: border-box; /* 1 */
754
+ padding: 0; /* 2 */
755
+ *height: 13px; /* 3 */
756
+ *width: 13px; /* 3 */
757
+ }
758
+
759
+ /*
760
+ * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
761
+ * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
762
+ * (include `-moz` to future-proof).
763
+ */
764
+
765
+ .pure-form input[type="search"] {
766
+ -webkit-appearance: textfield; /* 1 */
767
+ -moz-box-sizing: content-box;
768
+ -webkit-box-sizing: content-box; /* 2 */
769
+ box-sizing: content-box;
770
+ }
771
+
772
+ /*
773
+ * Removes inner padding and search cancel button in Safari 5 and Chrome
774
+ * on OS X.
775
+ */
776
+
777
+ .pure-form input[type="search"]::-webkit-search-cancel-button,
778
+ .pure-form input[type="search"]::-webkit-search-decoration {
779
+ -webkit-appearance: none;
780
+ }
781
+
782
+ /*
783
+ * Removes inner padding and border in Firefox 3+.
784
+ */
785
+
786
+ .pure-form button::-moz-focus-inner,
787
+ .pure-form input::-moz-focus-inner {
788
+ border: 0;
789
+ padding: 0;
790
+ }
791
+
792
+ /*
793
+ * 1. Removes default vertical scrollbar in IE 6/7/8/9.
794
+ * 2. Improves readability and alignment in all browsers.
795
+ */
796
+
797
+ .pure-form textarea {
798
+ overflow: auto; /* 1 */
799
+ vertical-align: top; /* 2 */
800
+ }
801
+
802
+ .pure-form input,
803
+ .pure-form select {
804
+ padding: 0.5em 0.6em;
805
+ display: inline-block;
806
+ border: 1px solid #ccc;
807
+ font-size: 0.8em;
808
+ box-shadow: inset 0 1px 3px #ddd;
809
+ border-radius: 4px;
810
+ -webkit-transition: 0.3s linear border;
811
+ -moz-transition: 0.3s linear border;
812
+ -ms-transition: 0.3s linear border;
813
+ -o-transition: 0.3s linear border;
814
+ transition: 0.3s linear border;
815
+ -moz-box-sizing: border-box;
816
+ -webkit-box-sizing: border-box;
817
+ box-sizing: border-box;
818
+ -webkit-font-smoothing: antialiased;
819
+ }
820
+
821
+ .pure-form input:focus,
822
+ .pure-form select:focus {
823
+ outline: 0;
824
+ outline: thin dotted \9; /* IE6-9 */
825
+ border-color: #129FEA;
826
+ }
827
+ .pure-form .pure-checkbox,
828
+ .pure-form .pure-radio {
829
+ margin: 0.5em 0;
830
+ display: block;
831
+ }
832
+ .pure-form input[disabled],
833
+ .pure-form select[disabled],
834
+ .pure-form textarea[disabled],
835
+ .pure-form input[readonly],
836
+ .pure-form select[readonly],
837
+ .pure-form textarea[readonly] {
838
+ cursor: not-allowed;
839
+ background-color: #eaeded;
840
+ color: #cad2d3;
841
+ border-color: transparent;
842
+ }
843
+ .pure-form input:focus:invalid,
844
+ .pure-form textarea:focus:invalid,
845
+ .pure-form select:focus:invalid {
846
+ color: #b94a48;
847
+ border: 1px solid #ee5f5b;
848
+ }
849
+ .pure-form input:focus:invalid:focus,
850
+ .pure-form textarea:focus:invalid:focus,
851
+ .pure-form select:focus:invalid:focus {
852
+ border-color: #e9322d;
853
+ }
854
+ .pure-form select {
855
+ border: 1px solid #ccc;
856
+ background-color: white;
857
+ }
858
+ .pure-form select[multiple] {
859
+ height: auto;
860
+ }
861
+ .pure-form label {
862
+ margin: 0.5em 0 0.2em;
863
+ color: #999;
864
+ font-size:90%;
865
+ }
866
+ .pure-form fieldset {
867
+ margin: 0;
868
+ padding: 0.35em 0 0.75em;
869
+ border: 0;
870
+ }
871
+ .pure-form legend {
872
+ display: block;
873
+ width: 100%;
874
+ padding: 0.3em 0;
875
+ margin-bottom: 0.3em;
876
+ font-size: 125%;
877
+ color: #333;
878
+ border-bottom: 1px solid #e5e5e5;
879
+ }
880
+
881
+ .pure-form.pure-form-stacked input[type='text'],
882
+ .pure-form.pure-form-stacked select,
883
+ .pure-form.pure-form-stacked label {
884
+ display: block;
885
+ }
886
+
887
+ .pure-form-aligned input,
888
+ .pure-form-aligned textarea,
889
+ .pure-form-aligned select,
890
+ .pure-form-aligned .pure-help-inline {
891
+ display: inline-block;
892
+ *display: inline; /* IE7 inline-block hack */
893
+ *zoom: 1;
894
+ vertical-align: middle;
895
+ }
896
+
897
+ /* aligned Forms */
898
+ .pure-form-aligned .pure-control-group {
899
+ margin-bottom: 0.5em;
900
+ }
901
+ .pure-form-aligned .pure-control-group label {
902
+ text-align: right;
903
+ display: inline-block;
904
+ vertical-align: middle;
905
+ width: 10em;
906
+ margin: 0 1em 0 0;
907
+ }
908
+ .pure-form-aligned .pure-controls {
909
+ margin: 1.5em 0 0 10em;
910
+ }
911
+
912
+ /* Rounded Inputs */
913
+ .pure-form .pure-input-rounded {
914
+ border-radius: 20px;
915
+ padding-left:1em;
916
+ }
917
+
918
+ /* Grouped Inputs */
919
+ .pure-form .pure-group fieldset {
920
+ margin-bottom: 10px;
921
+ }
922
+ .pure-form .pure-group input {
923
+ display: block;
924
+ padding: 10px;
925
+ margin: 0;
926
+ border-radius: 0;
927
+ position: relative;
928
+ top: -1px;
929
+ }
930
+ .pure-form .pure-group input:focus {
931
+ z-index: 2;
932
+ }
933
+ .pure-form .pure-group input:first-child {
934
+ top: 1px;
935
+ border-radius: 4px 4px 0 0;
936
+ }
937
+ .pure-form .pure-group input:last-child {
938
+ top: -2px;
939
+ border-radius: 0 0 4px 4px;
940
+ }
941
+ .pure-form .pure-group button {
942
+ margin: 0.35em 0;
943
+ }
944
+
945
+ .pure-form .pure-input-1 {
946
+ width: 100%;
947
+ }
948
+ .pure-form .pure-input-2-3 {
949
+ width: 66%;
950
+ }
951
+ .pure-form .pure-input-1-2 {
952
+ width: 50%;
953
+ }
954
+ .pure-form .pure-input-1-3 {
955
+ width: 33%;
956
+ }
957
+ .pure-form .pure-input-1-4 {
958
+ width: 25%;
959
+ }
960
+
961
+ /* Inline help for forms */
962
+ .pure-form .pure-help-inline {
963
+ display: inline-block;
964
+ padding-left: 0.3em;
965
+ color: #666;
966
+ vertical-align: middle;
967
+ font-size: 90%;
968
+ }
969
+
970
+ .pure-g {
971
+ letter-spacing: -0.31em; /* Webkit: collapse white-space between units */
972
+ *letter-spacing: normal; /* reset IE < 8 */
973
+ *word-spacing: -0.43em; /* IE < 8: collapse white-space between units */
974
+ text-rendering: optimizespeed; /* Webkit: fixes text-rendering: optimizeLegibility */
975
+ }
976
+
977
+ /* Opera as of 12 on Windows needs word-spacing.
978
+ The ".opera-only" selector is used to prevent actual prefocus styling
979
+ and is not required in markup.
980
+ */
981
+ .opera-only :-o-prefocus,
982
+ .pure-g {
983
+ word-spacing: -0.43em;
984
+ }
985
+
986
+ .pure-u {
987
+ display: inline-block;
988
+ zoom: 1; *display: inline; /* IE < 8: fake inline-block */
989
+ letter-spacing: normal;
990
+ word-spacing: normal;
991
+ vertical-align: top;
992
+ text-rendering: auto;
993
+ }
994
+
995
+ .pure-u-1,
996
+ .pure-u-1-2,
997
+ .pure-u-1-3,
998
+ .pure-u-2-3,
999
+ .pure-u-1-4,
1000
+ .pure-u-3-4,
1001
+ .pure-u-1-5,
1002
+ .pure-u-2-5,
1003
+ .pure-u-3-5,
1004
+ .pure-u-4-5,
1005
+ .pure-u-1-6,
1006
+ .pure-u-5-6,
1007
+ .pure-u-1-8,
1008
+ .pure-u-3-8,
1009
+ .pure-u-5-8,
1010
+ .pure-u-7-8,
1011
+ .pure-u-1-12,
1012
+ .pure-u-5-12,
1013
+ .pure-u-7-12,
1014
+ .pure-u-11-12,
1015
+ .pure-u-1-24,
1016
+ .pure-u-5-24,
1017
+ .pure-u-7-24,
1018
+ .pure-u-11-24,
1019
+ .pure-u-13-24,
1020
+ .pure-u-17-24,
1021
+ .pure-u-19-24,
1022
+ .pure-u-23-24 {
1023
+ display: inline-block;
1024
+ zoom: 1; *display: inline; /* IE < 8: fake inline-block */
1025
+ letter-spacing: normal;
1026
+ word-spacing: normal;
1027
+ vertical-align: top;
1028
+ text-rendering: auto;
1029
+ }
1030
+
1031
+ .pure-u-1 {
1032
+ display: block;
1033
+ }
1034
+
1035
+ .pure-u-1-2 {
1036
+ width: 50%;
1037
+ }
1038
+
1039
+ .pure-u-1-3 {
1040
+ width: 33.33333%;
1041
+ }
1042
+
1043
+ .pure-u-2-3 {
1044
+ width: 66.66666%;
1045
+ }
1046
+
1047
+ .pure-u-1-4 {
1048
+ width: 25%;
1049
+ }
1050
+
1051
+ .pure-u-3-4 {
1052
+ width: 75%;
1053
+ }
1054
+
1055
+ .pure-u-1-5 {
1056
+ width: 20%;
1057
+ }
1058
+
1059
+ .pure-u-2-5 {
1060
+ width: 40%;
1061
+ }
1062
+
1063
+ .pure-u-3-5 {
1064
+ width: 60%;
1065
+ }
1066
+
1067
+ .pure-u-4-5 {
1068
+ width: 80%;
1069
+ }
1070
+
1071
+ .pure-u-1-6 {
1072
+ width: 16.656%;
1073
+ }
1074
+
1075
+ .pure-u-5-6 {
1076
+ width: 83.33%;
1077
+ }
1078
+
1079
+ .pure-u-1-8 {
1080
+ width: 12.5%;
1081
+ }
1082
+
1083
+ .pure-u-3-8 {
1084
+ width: 37.5%;
1085
+ }
1086
+
1087
+ .pure-u-5-8 {
1088
+ width: 62.5%;
1089
+ }
1090
+
1091
+ .pure-u-7-8 {
1092
+ width: 87.5%;
1093
+ }
1094
+
1095
+ .pure-u-1-12 {
1096
+ width: 8.3333%;
1097
+ }
1098
+
1099
+ .pure-u-5-12 {
1100
+ width: 41.6666%;
1101
+ }
1102
+
1103
+ .pure-u-7-12 {
1104
+ width: 58.3333%;
1105
+ }
1106
+
1107
+ .pure-u-11-12 {
1108
+ width: 91.6666%;
1109
+ }
1110
+
1111
+ .pure-u-1-24 {
1112
+ width: 4.1666%;
1113
+ }
1114
+
1115
+ .pure-u-5-24 {
1116
+ width: 20.8333%;
1117
+ }
1118
+
1119
+ .pure-u-7-24 {
1120
+ width: 29.1666%;
1121
+ }
1122
+
1123
+ .pure-u-11-24 {
1124
+ width: 45.8333%;
1125
+ }
1126
+
1127
+ .pure-u-13-24 {
1128
+ width: 54.1666%;
1129
+ }
1130
+
1131
+ .pure-u-17-24 {
1132
+ width: 70.8333%;
1133
+ }
1134
+
1135
+ .pure-u-19-24 {
1136
+ width: 79.1666%;
1137
+ }
1138
+
1139
+ .pure-u-23-24 {
1140
+ width: 95.8333%;
1141
+ }
1142
+
1143
+ .pure-menu ul {
1144
+ position: absolute;
1145
+ visibility: hidden;
1146
+ }
1147
+
1148
+ .pure-menu.pure-menu-open {
1149
+ visibility: visible;
1150
+ z-index: 2;
1151
+ width: 100%;
1152
+ }
1153
+
1154
+ .pure-menu ul {
1155
+ left: -10000px;
1156
+ list-style: none;
1157
+ margin: 0;
1158
+ padding: 0;
1159
+ top: -10000px;
1160
+ z-index: 1;
1161
+ }
1162
+
1163
+ .pure-menu > ul { position: relative; }
1164
+
1165
+ .pure-menu-open > ul {
1166
+ left: 0;
1167
+ top: 0;
1168
+ visibility: visible;
1169
+ }
1170
+
1171
+ .pure-menu li { position: relative; }
1172
+
1173
+ .pure-menu a, .pure-menu .pure-menu-heading {
1174
+ display: block;
1175
+ color: inherit;
1176
+ line-height: 1.5em;
1177
+ padding: 5px 20px;
1178
+ text-decoration: none;
1179
+ white-space: nowrap;
1180
+ }
1181
+
1182
+ .pure-menu.pure-menu-horizontal > .pure-menu-heading {
1183
+ display: inline-block;
1184
+ margin: 0;
1185
+ zoom: 1;
1186
+ *display: inline;
1187
+ vertical-align: middle;
1188
+ }
1189
+ .pure-menu.pure-menu-horizontal > ul {
1190
+ display: inline-block;
1191
+ zoom: 1;
1192
+ *display: inline;
1193
+ vertical-align: middle;
1194
+ }
1195
+
1196
+ .pure-menu li a { padding: 5px 20px; }
1197
+
1198
+ .pure-menu-can-have-children > .pure-menu-label:after {
1199
+ content: '\25B8';
1200
+ float: right;
1201
+ font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'DejaVu Sans', sans-serif; /* These specific fonts have the Unicode char we need. */
1202
+ margin-right: -20px;
1203
+ margin-top: -1px;
1204
+ }
1205
+
1206
+ .pure-menu-can-have-children > .pure-menu-label {
1207
+ padding-right:30px;
1208
+ }
1209
+
1210
+ .pure-menu-separator {
1211
+ background-color: #dfdfdf;
1212
+ display: block;
1213
+ height: 1px;
1214
+ font-size: 0;
1215
+ margin: 7px 2px;
1216
+ overflow: hidden;
1217
+ }
1218
+
1219
+ .pure-menu-hidden { display: none; }
1220
+
1221
+ /* FIXED MENU */
1222
+ .pure-menu-fixed {
1223
+ position: fixed;
1224
+ top:0;
1225
+ left:0;
1226
+ width: 100%;
1227
+ }
1228
+
1229
+
1230
+ /* HORIZONTAL MENU CODE */
1231
+
1232
+ /* Initial menus should be inline-block so that they are horizontal */
1233
+ .pure-menu-horizontal li {
1234
+ display: inline-block;
1235
+ zoom: 1;
1236
+ *display: inline;
1237
+ vertical-align: middle;
1238
+ }
1239
+
1240
+ /* Submenus should still be display:block; */
1241
+ .pure-menu-horizontal li li {
1242
+ display: block;
1243
+ }
1244
+
1245
+ /* Content after should be down arrow */
1246
+ .pure-menu-horizontal > .pure-menu-children > .pure-menu-can-have-children > .pure-menu-label:after {
1247
+ content: "\25BE";
1248
+ }
1249
+ /*Add extra padding to elements that have the arrow so that the hover looks nice */
1250
+ .pure-menu-horizontal > .pure-menu-children > .pure-menu-can-have-children > .pure-menu-label {
1251
+ padding-right:30px;
1252
+ }
1253
+
1254
+
1255
+ /* MAIN MENU STYLING */
1256
+
1257
+ .pure-menu.pure-menu-open,
1258
+ .pure-menu.pure-menu-horizontal li .pure-menu-children {
1259
+ background: #ffffff; /* Old browsers */
1260
+ border: 1px solid #b7b7b7;
1261
+ }
1262
+
1263
+ /* remove borders for horizontal menus */
1264
+ .pure-menu.pure-menu-horizontal, .pure-menu.pure-menu-horizontal .pure-menu-heading {
1265
+ border: none;
1266
+ }
1267
+
1268
+
1269
+
1270
+ /* LINK STYLES */
1271
+
1272
+ .pure-menu a {
1273
+ border: 1px solid transparent;
1274
+ border-left: none;
1275
+ border-right: none;
1276
+
1277
+ }
1278
+
1279
+ .pure-menu a,
1280
+ .pure-menu .pure-menu-can-have-children > li:after {
1281
+ color: #777;
1282
+ }
1283
+
1284
+ .pure-menu .pure-menu-can-have-children > li:hover:after {
1285
+ color: #fff;
1286
+ }
1287
+
1288
+
1289
+
1290
+ /* HOVER STATES */
1291
+ .pure-menu li a:hover {
1292
+ background: #eee;
1293
+ }
1294
+
1295
+ /* DISABLED STATES */
1296
+ .pure-menu li.pure-menu-disabled a:hover {
1297
+ background: #fff;
1298
+ color: #bfbfbf;
1299
+ }
1300
+
1301
+ .pure-menu .pure-menu-disabled > a {
1302
+ background-image: none;
1303
+ border-color: transparent;
1304
+ cursor: default;
1305
+ }
1306
+
1307
+ .pure-menu .pure-menu-disabled > a,
1308
+ .pure-menu .pure-menu-can-have-children.pure-menu-disabled > a:after {
1309
+ color: #bfbfbf;
1310
+ }
1311
+
1312
+ /* HEADINGS */
1313
+ .pure-menu .pure-menu-heading {
1314
+ color: #565d64;
1315
+ text-transform: uppercase;
1316
+ font-size:90%;
1317
+ margin-top:0.5em;
1318
+ border-bottom-width: 1px;
1319
+ border-bottom-style: solid;
1320
+ border-bottom-color: #dfdfdf;
1321
+ }
1322
+
1323
+ /* ACTIVE MENU ITEM */
1324
+ .pure-menu .pure-menu-selected a {
1325
+ color: #000;
1326
+ }
1327
+
1328
+ /* FIXED MENU */
1329
+ .pure-menu.pure-menu-open.pure-menu-fixed {
1330
+ border: none;
1331
+ border-bottom: 1px solid #b7b7b7;
1332
+ }
1333
+
1334
+ .pure-paginator {
1335
+ list-style: none;
1336
+ margin: 0;
1337
+ padding: 0;
1338
+ }
1339
+ .pure-paginator li {
1340
+ display: inline-block;
1341
+ *display: inline;
1342
+ /* IE 7 inline-block hack */
1343
+ *zoom: 1;
1344
+ margin: 0 -0.35em 0 0;
1345
+ }
1346
+ .pure-paginator .pure-button {
1347
+ border-radius: 0;
1348
+ padding: 0.8em 1.4em;
1349
+ vertical-align: top;
1350
+ height: 1.1em;
1351
+ }
1352
+ .pure-paginator .pure-button:focus {
1353
+ outline-style: none;
1354
+ }
1355
+ .pure-paginator .prev, .pure-paginator .next {
1356
+ color: #C0C1C3;
1357
+ text-shadow: 0px -1px 0px rgba(0,0,0, 0.45);
1358
+ }
1359
+ .pure-paginator .prev {
1360
+ border-radius: 2px 0 0 2px;
1361
+ }
1362
+ .pure-paginator .next {
1363
+ border-radius: 0 2px 2px 0;
1364
+ }
1365
+
1366
+ /*
1367
+ * CSS TABLES
1368
+ * ==========
1369
+ * Simple CSS for HTML Tables
1370
+ * Author: tilomitra
1371
+ */
1372
+
1373
+ /* foundational CSS */
1374
+ .pure-table {
1375
+ /* Remove spacing between table cells (from Normalize.css) */
1376
+ border-collapse: collapse;
1377
+ border-spacing: 0;
1378
+ empty-cells: show;
1379
+ border: 1px solid #cbcbcb;
1380
+ }
1381
+
1382
+ .pure-table caption {
1383
+ color: #000;
1384
+ font: italic 85%/1 arial, sans-serif;
1385
+ padding: 1em 0;
1386
+ text-align: center;
1387
+ }
1388
+
1389
+ .pure-table td,
1390
+ .pure-table th {
1391
+ border-left: 1px solid #cbcbcb;/* inner column border */
1392
+ border-width: 0 0 0 1px;
1393
+ font-size: inherit;
1394
+ margin: 0;
1395
+ overflow: visible; /*to make ths where the title is really long work*/
1396
+ padding: 6px 12px; /* cell padding */
1397
+ }
1398
+ .pure-table td:first-child,
1399
+ .pure-table th:first-child {
1400
+ border-left-width: 0;
1401
+ }
1402
+
1403
+ .pure-table thead {
1404
+ background: #e0e0e0;
1405
+ color: #000;
1406
+ text-align: left;
1407
+ vertical-align: bottom;
1408
+ white-space: nowrap;
1409
+ }
1410
+
1411
+ /*
1412
+ striping:
1413
+ even - #fff (white)
1414
+ odd - #edf5ff (light blue)
1415
+ */
1416
+ .pure-table td {
1417
+ background-color: transparent;
1418
+ }
1419
+ .pure-table-odd td {
1420
+ background-color: #f2f2f2;
1421
+ }
1422
+
1423
+ /* nth-child selector for modern browsers */
1424
+ .pure-table-striped tr:nth-child(2n-1) td {
1425
+ background-color: #f2f2f2;
1426
+ }
1427
+
1428
+ /* BORDERED TABLES */
1429
+ .pure-table-bordered td {
1430
+ border-bottom:1px solid #cbcbcb;
1431
+ }
1432
+ .pure-table-bordered tbody > tr:last-child td,
1433
+ .pure-table-horizontal tbody > tr:last-child td {
1434
+ border-bottom-width: 0;
1435
+ }
1436
+
1437
+
1438
+ /* HORIZONTAL BORDERED TABLES */
1439
+
1440
+ .pure-table-horizontal td,
1441
+ .pure-table-horizontal th {
1442
+ border-width: 0 0 1px 0;
1443
+ border-bottom:1px solid #cbcbcb;
1444
+ }
1445
+ .pure-table-horizontal tbody > tr:last-child td {
1446
+ border-bottom-width: 0;
1447
+ }