kalindar 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.gitignore +23 -0
- data/.rspec +2 -0
- data/.travis.yml +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +48 -0
- data/Rakefile +7 -0
- data/config.json +12 -0
- data/config.ru +2 -0
- data/kalindar.gemspec +29 -0
- data/lib/kalindar.rb +8 -0
- data/lib/kalindar/app.rb +100 -0
- data/lib/kalindar/event.rb +24 -0
- data/lib/kalindar/event_calendar.rb +103 -0
- data/lib/kalindar/locales/de.yml +24 -0
- data/lib/kalindar/locales/en.yml +24 -0
- data/lib/kalindar/public/kalindar.css +70 -0
- data/lib/kalindar/public/kalindar.js +12 -0
- data/lib/kalindar/public/pure-min.css +11 -0
- data/lib/kalindar/public/pure.css +1664 -0
- data/lib/kalindar/public/right-calendar.js +7 -0
- data/lib/kalindar/public/right-dialog.js +7 -0
- data/lib/kalindar/public/right.js +7 -0
- data/lib/kalindar/version.rb +3 -0
- data/lib/kalindar/views/event_list.slim +23 -0
- data/lib/kalindar/views/layout.slim +12 -0
- data/lib/kalindar/views/new_event.slim +37 -0
- data/spec/kalindar_spec.rb +86 -0
- data/spec/spec_helper.rb +2 -0
- data/spec/testcal.ics +72 -0
- metadata +176 -0
@@ -0,0 +1,24 @@
|
|
1
|
+
en:
|
2
|
+
create_event: "New Event"
|
3
|
+
new_event: "New Event"
|
4
|
+
start_date: "Start Date"
|
5
|
+
when: "Time"
|
6
|
+
summary: "Summary"
|
7
|
+
location: "Location"
|
8
|
+
description: "Description"
|
9
|
+
duration: "Duration"
|
10
|
+
event: "event"
|
11
|
+
15m: "15 minutes"
|
12
|
+
30m: "30 minutes"
|
13
|
+
60m: "60 minutes"
|
14
|
+
90m: "90 minutes"
|
15
|
+
120m: "2 hours"
|
16
|
+
whole_day: "whole day"
|
17
|
+
1d: "1 day"
|
18
|
+
2d: "2 days"
|
19
|
+
5d: "5 days"
|
20
|
+
1w: "a week"
|
21
|
+
save: "save"
|
22
|
+
time:
|
23
|
+
formats:
|
24
|
+
short: "%Y/%m/%d"
|
@@ -0,0 +1,70 @@
|
|
1
|
+
ul.day_list {
|
2
|
+
list-style: none;
|
3
|
+
border-top: solid 1px;
|
4
|
+
border-left: solid 1px;
|
5
|
+
border-right: solid 1px;
|
6
|
+
background-color: #FEEEFE;
|
7
|
+
padding-left: 0em;
|
8
|
+
margin-left: 0.3em;
|
9
|
+
width: 18em;
|
10
|
+
}
|
11
|
+
|
12
|
+
li.day {
|
13
|
+
border-top: solid 1px;
|
14
|
+
border-left: solid 1px;
|
15
|
+
background-color: #EEEEEE;
|
16
|
+
}
|
17
|
+
|
18
|
+
li.saturday {
|
19
|
+
border-top: solid 1px;
|
20
|
+
border-left: solid 1px;
|
21
|
+
background-color: #DADAEE;
|
22
|
+
}
|
23
|
+
|
24
|
+
li.sunday {
|
25
|
+
border-top: solid 1px;
|
26
|
+
border-left: solid 1px;
|
27
|
+
background-color: #BBBBEE;
|
28
|
+
}
|
29
|
+
|
30
|
+
ul.event_list {
|
31
|
+
list-style: none;
|
32
|
+
border-top: solid 1px;
|
33
|
+
border-bottom: solid 1px;
|
34
|
+
background-color: #FEFEFE;
|
35
|
+
margin-left: 0.5em;
|
36
|
+
padding-left: 0.5em;
|
37
|
+
padding-right: 0em;
|
38
|
+
padding-top: 0em;
|
39
|
+
padding-bottom: 0em;
|
40
|
+
}
|
41
|
+
|
42
|
+
ul.event_list li {
|
43
|
+
border-bottom: solid 1px;
|
44
|
+
margin-left: 0.1em;
|
45
|
+
clear: both;
|
46
|
+
}
|
47
|
+
|
48
|
+
#event {
|
49
|
+
margin-left: 0.4em;
|
50
|
+
}
|
51
|
+
|
52
|
+
#time {
|
53
|
+
float: left;
|
54
|
+
width: 6.8em;
|
55
|
+
}
|
56
|
+
|
57
|
+
#summary {
|
58
|
+
font-weight: bold;
|
59
|
+
}
|
60
|
+
|
61
|
+
.hidden_new_event_mask {
|
62
|
+
display: none;
|
63
|
+
margin: 1em;
|
64
|
+
}
|
65
|
+
|
66
|
+
#hidden_description {
|
67
|
+
display: none;
|
68
|
+
margin-left: 0.5em;
|
69
|
+
font-size: 80%;
|
70
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
"a#new_event_link".onClick(function () {
|
2
|
+
console.log(this);
|
3
|
+
//$('hidden_new_event_mask').fade();
|
4
|
+
this.parent().parent().first('.hidden_new_event_mask').fade();
|
5
|
+
// Do not follow link.
|
6
|
+
return false;
|
7
|
+
});
|
8
|
+
|
9
|
+
"#event_day".onClick( function() {
|
10
|
+
console.log(this.parent());
|
11
|
+
this.first("#hidden_description").fade();
|
12
|
+
});
|
@@ -0,0 +1,11 @@
|
|
1
|
+
/*!
|
2
|
+
Pure v0.4.2
|
3
|
+
Copyright 2014 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.3 | MIT License | git.io/normalize
|
9
|
+
Copyright (c) Nicolas Gallagher and Jonathan Neal
|
10
|
+
*/
|
11
|
+
/*! normalize.css v1.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}blockquote{margin:1em 40px}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}p,pre{margin:1em 0}code,kbd,pre,samp{font-family:monospace,serif;_font-family:'courier new',monospace;font-size:1em}pre{white-space:pre;white-space:pre-wrap;word-wrap:break-word}q{quotes:none}q:before,q:after{content:'';content:none}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}dl,menu,ol,ul{margin:1em 0}dd{margin:0 0 0 40px}menu,ol,ul{padding:0 0 0 40px}nav ul,nav ol{list-style:none;list-style-image:none}img{border:0;-ms-interpolation-mode:bicubic}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0;white-space:normal;*margin-left:-7px}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer;*overflow:visible}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0;*height:13px;*width:13px}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}[hidden]{display:none!important}.pure-g{letter-spacing:-.31em;*letter-spacing:normal;*word-spacing:-.43em;text-rendering:optimizespeed;font-family:FreeSans,Arimo,"Droid Sans",Helvetica,Arial,sans-serif;display:-webkit-flex;-webkit-flex-flow:row wrap;display:-ms-flexbox;-ms-flex-flow:row wrap}.opera-only :-o-prefocus,.pure-g{word-spacing:-.43em}.pure-u{display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}.pure-g [class *="pure-u"]{font-family:sans-serif}.pure-u-1,.pure-u-1-1,.pure-u-1-2,.pure-u-1-3,.pure-u-2-3,.pure-u-1-4,.pure-u-3-4,.pure-u-1-5,.pure-u-2-5,.pure-u-3-5,.pure-u-4-5,.pure-u-5-5,.pure-u-1-6,.pure-u-5-6,.pure-u-1-8,.pure-u-3-8,.pure-u-5-8,.pure-u-7-8,.pure-u-1-12,.pure-u-5-12,.pure-u-7-12,.pure-u-11-12,.pure-u-1-24,.pure-u-2-24,.pure-u-3-24,.pure-u-4-24,.pure-u-5-24,.pure-u-6-24,.pure-u-7-24,.pure-u-8-24,.pure-u-9-24,.pure-u-10-24,.pure-u-11-24,.pure-u-12-24,.pure-u-13-24,.pure-u-14-24,.pure-u-15-24,.pure-u-16-24,.pure-u-17-24,.pure-u-18-24,.pure-u-19-24,.pure-u-20-24,.pure-u-21-24,.pure-u-22-24,.pure-u-23-24,.pure-u-24-24{display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}.pure-u-1-24{width:4.1667%;*width:4.1357%}.pure-u-1-12,.pure-u-2-24{width:8.3333%;*width:8.3023%}.pure-u-1-8,.pure-u-3-24{width:12.5%;*width:12.469%}.pure-u-1-6,.pure-u-4-24{width:16.6667%;*width:16.6357%}.pure-u-1-5{width:20%;*width:19.969%}.pure-u-5-24{width:20.8333%;*width:20.8023%}.pure-u-1-4,.pure-u-6-24{width:25%;*width:24.969%}.pure-u-7-24{width:29.1667%;*width:29.1357%}.pure-u-1-3,.pure-u-8-24{width:33.3333%;*width:33.3023%}.pure-u-3-8,.pure-u-9-24{width:37.5%;*width:37.469%}.pure-u-2-5{width:40%;*width:39.969%}.pure-u-5-12,.pure-u-10-24{width:41.6667%;*width:41.6357%}.pure-u-11-24{width:45.8333%;*width:45.8023%}.pure-u-1-2,.pure-u-12-24{width:50%;*width:49.969%}.pure-u-13-24{width:54.1667%;*width:54.1357%}.pure-u-7-12,.pure-u-14-24{width:58.3333%;*width:58.3023%}.pure-u-3-5{width:60%;*width:59.969%}.pure-u-5-8,.pure-u-15-24{width:62.5%;*width:62.469%}.pure-u-2-3,.pure-u-16-24{width:66.6667%;*width:66.6357%}.pure-u-17-24{width:70.8333%;*width:70.8023%}.pure-u-3-4,.pure-u-18-24{width:75%;*width:74.969%}.pure-u-19-24{width:79.1667%;*width:79.1357%}.pure-u-4-5{width:80%;*width:79.969%}.pure-u-5-6,.pure-u-20-24{width:83.3333%;*width:83.3023%}.pure-u-7-8,.pure-u-21-24{width:87.5%;*width:87.469%}.pure-u-11-12,.pure-u-22-24{width:91.6667%;*width:91.6357%}.pure-u-23-24{width:95.8333%;*width:95.8023%}.pure-u-1,.pure-u-1-1,.pure-u-5-5,.pure-u-24-24{width:100%}.pure-g-r{letter-spacing:-.31em;*letter-spacing:normal;*word-spacing:-.43em;font-family:FreeSans,Arimo,"Droid Sans",Helvetica,Arial,sans-serif;display:-webkit-flex;-webkit-flex-flow:row wrap;display:-ms-flexbox;-ms-flex-flow:row wrap}.opera-only :-o-prefocus,.pure-g-r{word-spacing:-.43em}.pure-g-r [class *="pure-u"]{font-family:sans-serif}.pure-g-r img{max-width:100%;height:auto}@media (min-width:980px){.pure-visible-phone{display:none}.pure-visible-tablet{display:none}.pure-hidden-desktop{display:none}}@media (max-width:480px){.pure-g-r>.pure-u,.pure-g-r>[class *="pure-u-"]{width:100%}}@media (max-width:767px){.pure-g-r>.pure-u,.pure-g-r>[class *="pure-u-"]{width:100%}.pure-hidden-phone{display:none}.pure-visible-desktop{display:none}}@media (min-width:768px) and (max-width:979px){.pure-hidden-tablet{display:none}.pure-visible-desktop{display:none}}.pure-button{display:inline-block;*display:inline;zoom:1;line-height:normal;white-space:nowrap;vertical-align:baseline;text-align:center;cursor:pointer;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.pure-button::-moz-focus-inner{padding:0;border:0}.pure-button{font-family:inherit;font-size:100%;*font-size:90%;*overflow:visible;padding:.5em 1em;color:#444;color:rgba(0,0,0,.8);*color:#444;border:1px solid #999;border:0 rgba(0,0,0,0);background-color:#E6E6E6;text-decoration:none;border-radius:2px}.pure-button-hover,.pure-button:hover,.pure-button:focus{filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000', GradientType=0);background-image:-webkit-gradient(linear,0 0,0 100%,from(transparent),color-stop(40%,rgba(0,0,0,.05)),to(rgba(0,0,0,.1)));background-image:-webkit-linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));background-image:-moz-linear-gradient(top,rgba(0,0,0,.05) 0,rgba(0,0,0,.1));background-image:-o-linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1));background-image:linear-gradient(transparent,rgba(0,0,0,.05) 40%,rgba(0,0,0,.1))}.pure-button:focus{outline:0}.pure-button-active,.pure-button:active{box-shadow:0 0 0 1px rgba(0,0,0,.15) inset,0 0 6px rgba(0,0,0,.2) inset}.pure-button[disabled],.pure-button-disabled,.pure-button-disabled:hover,.pure-button-disabled:focus,.pure-button-disabled:active{border:0;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);filter:alpha(opacity=40);-khtml-opacity:.4;-moz-opacity:.4;opacity:.4;cursor:not-allowed;box-shadow:none}.pure-button-hidden{display:none}.pure-button::-moz-focus-inner{padding:0;border:0}.pure-button-primary,.pure-button-selected,a.pure-button-primary,a.pure-button-selected{background-color:#0078e7;color:#fff}.pure-form input[type=text],.pure-form input[type=password],.pure-form input[type=email],.pure-form input[type=url],.pure-form input[type=date],.pure-form input[type=month],.pure-form input[type=time],.pure-form input[type=datetime],.pure-form input[type=datetime-local],.pure-form input[type=week],.pure-form input[type=number],.pure-form input[type=search],.pure-form input[type=tel],.pure-form input[type=color],.pure-form select,.pure-form textarea{padding:.5em .6em;display:inline-block;border:1px solid #ccc;box-shadow:inset 0 1px 3px #ddd;border-radius:4px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.pure-form input:not([type]){padding:.5em .6em;display:inline-block;border:1px solid #ccc;box-shadow:inset 0 1px 3px #ddd;border-radius:4px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.pure-form input[type=color]{padding:.2em .5em}.pure-form input[type=text]:focus,.pure-form input[type=password]:focus,.pure-form input[type=email]:focus,.pure-form input[type=url]:focus,.pure-form input[type=date]:focus,.pure-form input[type=month]:focus,.pure-form input[type=time]:focus,.pure-form input[type=datetime]:focus,.pure-form input[type=datetime-local]:focus,.pure-form input[type=week]:focus,.pure-form input[type=number]:focus,.pure-form input[type=search]:focus,.pure-form input[type=tel]:focus,.pure-form input[type=color]:focus,.pure-form select:focus,.pure-form textarea:focus{outline:0;outline:thin dotted \9;border-color:#129FEA}.pure-form input:not([type]):focus{outline:0;outline:thin dotted \9;border-color:#129FEA}.pure-form input[type=file]:focus,.pure-form input[type=radio]:focus,.pure-form input[type=checkbox]:focus{outline:thin dotted #333;outline:1px auto #129FEA}.pure-form .pure-checkbox,.pure-form .pure-radio{margin:.5em 0;display:block}.pure-form input[type=text][disabled],.pure-form input[type=password][disabled],.pure-form input[type=email][disabled],.pure-form input[type=url][disabled],.pure-form input[type=date][disabled],.pure-form input[type=month][disabled],.pure-form input[type=time][disabled],.pure-form input[type=datetime][disabled],.pure-form input[type=datetime-local][disabled],.pure-form input[type=week][disabled],.pure-form input[type=number][disabled],.pure-form input[type=search][disabled],.pure-form input[type=tel][disabled],.pure-form input[type=color][disabled],.pure-form select[disabled],.pure-form textarea[disabled]{cursor:not-allowed;background-color:#eaeded;color:#cad2d3}.pure-form input:not([type])[disabled]{cursor:not-allowed;background-color:#eaeded;color:#cad2d3}.pure-form input[readonly],.pure-form select[readonly],.pure-form textarea[readonly]{background:#eee;color:#777;border-color:#ccc}.pure-form input:focus:invalid,.pure-form textarea:focus:invalid,.pure-form select:focus:invalid{color:#b94a48;border-color:#ee5f5b}.pure-form input:focus:invalid:focus,.pure-form textarea:focus:invalid:focus,.pure-form select:focus:invalid:focus{border-color:#e9322d}.pure-form input[type=file]:focus:invalid:focus,.pure-form input[type=radio]:focus:invalid:focus,.pure-form input[type=checkbox]:focus:invalid:focus{outline-color:#e9322d}.pure-form select{border:1px solid #ccc;background-color:#fff}.pure-form select[multiple]{height:auto}.pure-form label{margin:.5em 0 .2em}.pure-form fieldset{margin:0;padding:.35em 0 .75em;border:0}.pure-form legend{display:block;width:100%;padding:.3em 0;margin-bottom:.3em;color:#333;border-bottom:1px solid #e5e5e5}.pure-form-stacked input[type=text],.pure-form-stacked input[type=password],.pure-form-stacked input[type=email],.pure-form-stacked input[type=url],.pure-form-stacked input[type=date],.pure-form-stacked input[type=month],.pure-form-stacked input[type=time],.pure-form-stacked input[type=datetime],.pure-form-stacked input[type=datetime-local],.pure-form-stacked input[type=week],.pure-form-stacked input[type=number],.pure-form-stacked input[type=search],.pure-form-stacked input[type=tel],.pure-form-stacked input[type=color],.pure-form-stacked select,.pure-form-stacked label,.pure-form-stacked textarea{display:block;margin:.25em 0}.pure-form-stacked input:not([type]){display:block;margin:.25em 0}.pure-form-aligned input,.pure-form-aligned textarea,.pure-form-aligned select,.pure-form-aligned .pure-help-inline,.pure-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.pure-form-aligned textarea{vertical-align:top}.pure-form-aligned .pure-control-group{margin-bottom:.5em}.pure-form-aligned .pure-control-group label{text-align:right;display:inline-block;vertical-align:middle;width:10em;margin:0 1em 0 0}.pure-form-aligned .pure-controls{margin:1.5em 0 0 10em}.pure-form input.pure-input-rounded,.pure-form .pure-input-rounded{border-radius:2em;padding:.5em 1em}.pure-form .pure-group fieldset{margin-bottom:10px}.pure-form .pure-group input{display:block;padding:10px;margin:0;border-radius:0;position:relative;top:-1px}.pure-form .pure-group input:focus{z-index:2}.pure-form .pure-group input:first-child{top:1px;border-radius:4px 4px 0 0}.pure-form .pure-group input:last-child{top:-2px;border-radius:0 0 4px 4px}.pure-form .pure-group button{margin:.35em 0}.pure-form .pure-input-1{width:100%}.pure-form .pure-input-2-3{width:66%}.pure-form .pure-input-1-2{width:50%}.pure-form .pure-input-1-3{width:33%}.pure-form .pure-input-1-4{width:25%}.pure-form .pure-help-inline,.pure-form-message-inline{display:inline-block;padding-left:.3em;color:#666;vertical-align:middle;font-size:.875em}.pure-form-message{display:block;color:#666;font-size:.875em}@media only screen and (max-width :480px){.pure-form button[type=submit]{margin:.7em 0 0}.pure-form input:not([type]),.pure-form input[type=text],.pure-form input[type=password],.pure-form input[type=email],.pure-form input[type=url],.pure-form input[type=date],.pure-form input[type=month],.pure-form input[type=time],.pure-form input[type=datetime],.pure-form input[type=datetime-local],.pure-form input[type=week],.pure-form input[type=number],.pure-form input[type=search],.pure-form input[type=tel],.pure-form input[type=color],.pure-form label{margin-bottom:.3em;display:block}.pure-group input:not([type]),.pure-group input[type=text],.pure-group input[type=password],.pure-group input[type=email],.pure-group input[type=url],.pure-group input[type=date],.pure-group input[type=month],.pure-group input[type=time],.pure-group input[type=datetime],.pure-group input[type=datetime-local],.pure-group input[type=week],.pure-group input[type=number],.pure-group input[type=search],.pure-group input[type=tel],.pure-group input[type=color]{margin-bottom:0}.pure-form-aligned .pure-control-group label{margin-bottom:.3em;text-align:left;display:block;width:100%}.pure-form-aligned .pure-controls{margin:1.5em 0 0}.pure-form .pure-help-inline,.pure-form-message-inline,.pure-form-message{display:block;font-size:.75em;padding:.2em 0 .8em}}.pure-menu ul{position:absolute;visibility:hidden}.pure-menu.pure-menu-open{visibility:visible;z-index:2;width:100%}.pure-menu ul{left:-10000px;list-style:none;margin:0;padding:0;top:-10000px;z-index:1}.pure-menu>ul{position:relative}.pure-menu-open>ul{left:0;top:0;visibility:visible}.pure-menu-open>ul:focus{outline:0}.pure-menu li{position:relative}.pure-menu a,.pure-menu .pure-menu-heading{display:block;color:inherit;line-height:1.5em;padding:5px 20px;text-decoration:none;white-space:nowrap}.pure-menu.pure-menu-horizontal>.pure-menu-heading{display:inline-block;*display:inline;zoom:1;margin:0;vertical-align:middle}.pure-menu.pure-menu-horizontal>ul{display:inline-block;*display:inline;zoom:1;vertical-align:middle}.pure-menu li a{padding:5px 20px}.pure-menu-can-have-children>.pure-menu-label:after{content:'\25B8';float:right;font-family:'Lucida Grande','Lucida Sans Unicode','DejaVu Sans',sans-serif;margin-right:-20px;margin-top:-1px}.pure-menu-can-have-children>.pure-menu-label{padding-right:30px}.pure-menu-separator{background-color:#dfdfdf;display:block;height:1px;font-size:0;margin:7px 2px;overflow:hidden}.pure-menu-hidden{display:none}.pure-menu-fixed{position:fixed;top:0;left:0;width:100%}.pure-menu-horizontal li{display:inline-block;*display:inline;zoom:1;vertical-align:middle}.pure-menu-horizontal li li{display:block}.pure-menu-horizontal>.pure-menu-children>.pure-menu-can-have-children>.pure-menu-label:after{content:"\25BE"}.pure-menu-horizontal>.pure-menu-children>.pure-menu-can-have-children>.pure-menu-label{padding-right:30px}.pure-menu-horizontal li.pure-menu-separator{height:50%;width:1px;margin:0 7px}.pure-menu-horizontal li li.pure-menu-separator{height:1px;width:auto;margin:7px 2px}.pure-menu.pure-menu-open,.pure-menu.pure-menu-horizontal li .pure-menu-children{background:#fff;border:1px solid #b7b7b7}.pure-menu.pure-menu-horizontal,.pure-menu.pure-menu-horizontal .pure-menu-heading{border:0}.pure-menu a{border:1px solid transparent;border-left:0;border-right:0}.pure-menu a,.pure-menu .pure-menu-can-have-children>li:after{color:#777}.pure-menu .pure-menu-can-have-children>li:hover:after{color:#fff}.pure-menu .pure-menu-open{background:#dedede}.pure-menu li a:hover,.pure-menu li a:focus{background:#eee}.pure-menu li.pure-menu-disabled a:hover,.pure-menu li.pure-menu-disabled a:focus{background:#fff;color:#bfbfbf}.pure-menu .pure-menu-disabled>a{background-image:none;border-color:transparent;cursor:default}.pure-menu .pure-menu-disabled>a,.pure-menu .pure-menu-can-have-children.pure-menu-disabled>a:after{color:#bfbfbf}.pure-menu .pure-menu-heading{color:#565d64;text-transform:uppercase;font-size:90%;margin-top:.5em;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#dfdfdf}.pure-menu .pure-menu-selected a{color:#000}.pure-menu.pure-menu-open.pure-menu-fixed{border:0;border-bottom:1px solid #b7b7b7}.pure-paginator{letter-spacing:-.31em;*letter-spacing:normal;*word-spacing:-.43em;text-rendering:optimizespeed;list-style:none;margin:0;padding:0}.opera-only :-o-prefocus,.pure-paginator{word-spacing:-.43em}.pure-paginator li{display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}.pure-paginator .pure-button{border-radius:0;padding:.8em 1.4em;vertical-align:top;height:1.1em}.pure-paginator .pure-button:focus,.pure-paginator .pure-button:active{outline-style:none}.pure-paginator .prev,.pure-paginator .next{color:#C0C1C3;text-shadow:0 -1px 0 rgba(0,0,0,.45)}.pure-paginator .prev{border-radius:2px 0 0 2px}.pure-paginator .next{border-radius:0 2px 2px 0}@media (max-width:480px){.pure-menu-horizontal{width:100%}.pure-menu-children li{display:block;border-bottom:1px solid #000}}.pure-table{border-collapse:collapse;border-spacing:0;empty-cells:show;border:1px solid #cbcbcb}.pure-table caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.pure-table td,.pure-table th{border-left:1px solid #cbcbcb;border-width:0 0 0 1px;font-size:inherit;margin:0;overflow:visible;padding:6px 12px}.pure-table td:first-child,.pure-table th:first-child{border-left-width:0}.pure-table thead{background:#e0e0e0;color:#000;text-align:left;vertical-align:bottom}.pure-table td{background-color:transparent}.pure-table-odd td{background-color:#f2f2f2}.pure-table-striped tr:nth-child(2n-1) td{background-color:#f2f2f2}.pure-table-bordered td{border-bottom:1px solid #cbcbcb}.pure-table-bordered tbody>tr:last-child td,.pure-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.pure-table-horizontal td,.pure-table-horizontal th{border-width:0 0 1px;border-bottom:1px solid #cbcbcb}.pure-table-horizontal tbody>tr:last-child td{border-bottom-width:0}
|
@@ -0,0 +1,1664 @@
|
|
1
|
+
/*!
|
2
|
+
Pure v0.5.0
|
3
|
+
Copyright 2014 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.3 | MIT License | git.io/normalize
|
9
|
+
Copyright (c) Nicolas Gallagher and Jonathan Neal
|
10
|
+
*/
|
11
|
+
/*! normalize.css v1.1.3 | MIT License | git.io/normalize */
|
12
|
+
|
13
|
+
/* ==========================================================================
|
14
|
+
HTML5 display definitions
|
15
|
+
========================================================================== */
|
16
|
+
|
17
|
+
/**
|
18
|
+
* Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
|
19
|
+
*/
|
20
|
+
|
21
|
+
article,
|
22
|
+
aside,
|
23
|
+
details,
|
24
|
+
figcaption,
|
25
|
+
figure,
|
26
|
+
footer,
|
27
|
+
header,
|
28
|
+
hgroup,
|
29
|
+
main,
|
30
|
+
nav,
|
31
|
+
section,
|
32
|
+
summary {
|
33
|
+
display: block;
|
34
|
+
}
|
35
|
+
|
36
|
+
/**
|
37
|
+
* Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
|
38
|
+
*/
|
39
|
+
|
40
|
+
audio,
|
41
|
+
canvas,
|
42
|
+
video {
|
43
|
+
display: inline-block;
|
44
|
+
*display: inline;
|
45
|
+
*zoom: 1;
|
46
|
+
}
|
47
|
+
|
48
|
+
/**
|
49
|
+
* Prevent modern browsers from displaying `audio` without controls.
|
50
|
+
* Remove excess height in iOS 5 devices.
|
51
|
+
*/
|
52
|
+
|
53
|
+
audio:not([controls]) {
|
54
|
+
display: none;
|
55
|
+
height: 0;
|
56
|
+
}
|
57
|
+
|
58
|
+
/**
|
59
|
+
* Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
|
60
|
+
* Known issue: no IE 6 support.
|
61
|
+
*/
|
62
|
+
|
63
|
+
[hidden] {
|
64
|
+
display: none;
|
65
|
+
}
|
66
|
+
|
67
|
+
/* ==========================================================================
|
68
|
+
Base
|
69
|
+
========================================================================== */
|
70
|
+
|
71
|
+
/**
|
72
|
+
* 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
|
73
|
+
* `em` units.
|
74
|
+
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
75
|
+
* user zoom.
|
76
|
+
*/
|
77
|
+
|
78
|
+
html {
|
79
|
+
font-size: 100%; /* 1 */
|
80
|
+
-ms-text-size-adjust: 100%; /* 2 */
|
81
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
82
|
+
}
|
83
|
+
|
84
|
+
/**
|
85
|
+
* Address `font-family` inconsistency between `textarea` and other form
|
86
|
+
* elements.
|
87
|
+
*/
|
88
|
+
|
89
|
+
html,
|
90
|
+
button,
|
91
|
+
input,
|
92
|
+
select,
|
93
|
+
textarea {
|
94
|
+
font-family: sans-serif;
|
95
|
+
}
|
96
|
+
|
97
|
+
/**
|
98
|
+
* Address margins handled incorrectly in IE 6/7.
|
99
|
+
*/
|
100
|
+
|
101
|
+
body {
|
102
|
+
margin: 0;
|
103
|
+
}
|
104
|
+
|
105
|
+
/* ==========================================================================
|
106
|
+
Links
|
107
|
+
========================================================================== */
|
108
|
+
|
109
|
+
/**
|
110
|
+
* Address `outline` inconsistency between Chrome and other browsers.
|
111
|
+
*/
|
112
|
+
|
113
|
+
a:focus {
|
114
|
+
outline: thin dotted;
|
115
|
+
}
|
116
|
+
|
117
|
+
/**
|
118
|
+
* Improve readability when focused and also mouse hovered in all browsers.
|
119
|
+
*/
|
120
|
+
|
121
|
+
a:active,
|
122
|
+
a:hover {
|
123
|
+
outline: 0;
|
124
|
+
}
|
125
|
+
|
126
|
+
/* ==========================================================================
|
127
|
+
Typography
|
128
|
+
========================================================================== */
|
129
|
+
|
130
|
+
/**
|
131
|
+
* Address font sizes and margins set differently in IE 6/7.
|
132
|
+
* Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
|
133
|
+
* and Chrome.
|
134
|
+
*/
|
135
|
+
|
136
|
+
h1 {
|
137
|
+
font-size: 2em;
|
138
|
+
margin: 0.67em 0;
|
139
|
+
}
|
140
|
+
|
141
|
+
h2 {
|
142
|
+
font-size: 1.5em;
|
143
|
+
margin: 0.83em 0;
|
144
|
+
}
|
145
|
+
|
146
|
+
h3 {
|
147
|
+
font-size: 1.17em;
|
148
|
+
margin: 1em 0;
|
149
|
+
}
|
150
|
+
|
151
|
+
h4 {
|
152
|
+
font-size: 1em;
|
153
|
+
margin: 1.33em 0;
|
154
|
+
}
|
155
|
+
|
156
|
+
h5 {
|
157
|
+
font-size: 0.83em;
|
158
|
+
margin: 1.67em 0;
|
159
|
+
}
|
160
|
+
|
161
|
+
h6 {
|
162
|
+
font-size: 0.67em;
|
163
|
+
margin: 2.33em 0;
|
164
|
+
}
|
165
|
+
|
166
|
+
/**
|
167
|
+
* Address styling not present in IE 7/8/9, Safari 5, and Chrome.
|
168
|
+
*/
|
169
|
+
|
170
|
+
abbr[title] {
|
171
|
+
border-bottom: 1px dotted;
|
172
|
+
}
|
173
|
+
|
174
|
+
/**
|
175
|
+
* Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
|
176
|
+
*/
|
177
|
+
|
178
|
+
b,
|
179
|
+
strong {
|
180
|
+
font-weight: bold;
|
181
|
+
}
|
182
|
+
|
183
|
+
blockquote {
|
184
|
+
margin: 1em 40px;
|
185
|
+
}
|
186
|
+
|
187
|
+
/**
|
188
|
+
* Address styling not present in Safari 5 and Chrome.
|
189
|
+
*/
|
190
|
+
|
191
|
+
dfn {
|
192
|
+
font-style: italic;
|
193
|
+
}
|
194
|
+
|
195
|
+
/**
|
196
|
+
* Address differences between Firefox and other browsers.
|
197
|
+
* Known issue: no IE 6/7 normalization.
|
198
|
+
*/
|
199
|
+
|
200
|
+
hr {
|
201
|
+
-moz-box-sizing: content-box;
|
202
|
+
box-sizing: content-box;
|
203
|
+
height: 0;
|
204
|
+
}
|
205
|
+
|
206
|
+
/**
|
207
|
+
* Address styling not present in IE 6/7/8/9.
|
208
|
+
*/
|
209
|
+
|
210
|
+
mark {
|
211
|
+
background: #ff0;
|
212
|
+
color: #000;
|
213
|
+
}
|
214
|
+
|
215
|
+
/**
|
216
|
+
* Address margins set differently in IE 6/7.
|
217
|
+
*/
|
218
|
+
|
219
|
+
p,
|
220
|
+
pre {
|
221
|
+
margin: 1em 0;
|
222
|
+
}
|
223
|
+
|
224
|
+
/**
|
225
|
+
* Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
|
226
|
+
*/
|
227
|
+
|
228
|
+
code,
|
229
|
+
kbd,
|
230
|
+
pre,
|
231
|
+
samp {
|
232
|
+
font-family: monospace, serif;
|
233
|
+
_font-family: 'courier new', monospace;
|
234
|
+
font-size: 1em;
|
235
|
+
}
|
236
|
+
|
237
|
+
/**
|
238
|
+
* Improve readability of pre-formatted text in all browsers.
|
239
|
+
*/
|
240
|
+
|
241
|
+
pre {
|
242
|
+
white-space: pre;
|
243
|
+
white-space: pre-wrap;
|
244
|
+
word-wrap: break-word;
|
245
|
+
}
|
246
|
+
|
247
|
+
/**
|
248
|
+
* Address CSS quotes not supported in IE 6/7.
|
249
|
+
*/
|
250
|
+
|
251
|
+
q {
|
252
|
+
quotes: none;
|
253
|
+
}
|
254
|
+
|
255
|
+
/**
|
256
|
+
* Address `quotes` property not supported in Safari 4.
|
257
|
+
*/
|
258
|
+
|
259
|
+
q:before,
|
260
|
+
q:after {
|
261
|
+
content: '';
|
262
|
+
content: none;
|
263
|
+
}
|
264
|
+
|
265
|
+
/**
|
266
|
+
* Address inconsistent and variable font size in all browsers.
|
267
|
+
*/
|
268
|
+
|
269
|
+
small {
|
270
|
+
font-size: 80%;
|
271
|
+
}
|
272
|
+
|
273
|
+
/**
|
274
|
+
* Prevent `sub` and `sup` affecting `line-height` in all browsers.
|
275
|
+
*/
|
276
|
+
|
277
|
+
sub,
|
278
|
+
sup {
|
279
|
+
font-size: 75%;
|
280
|
+
line-height: 0;
|
281
|
+
position: relative;
|
282
|
+
vertical-align: baseline;
|
283
|
+
}
|
284
|
+
|
285
|
+
sup {
|
286
|
+
top: -0.5em;
|
287
|
+
}
|
288
|
+
|
289
|
+
sub {
|
290
|
+
bottom: -0.25em;
|
291
|
+
}
|
292
|
+
|
293
|
+
/* ==========================================================================
|
294
|
+
Lists
|
295
|
+
========================================================================== */
|
296
|
+
|
297
|
+
/**
|
298
|
+
* Address margins set differently in IE 6/7.
|
299
|
+
*/
|
300
|
+
|
301
|
+
dl,
|
302
|
+
menu,
|
303
|
+
ol,
|
304
|
+
ul {
|
305
|
+
margin: 1em 0;
|
306
|
+
}
|
307
|
+
|
308
|
+
dd {
|
309
|
+
margin: 0 0 0 40px;
|
310
|
+
}
|
311
|
+
|
312
|
+
/**
|
313
|
+
* Address paddings set differently in IE 6/7.
|
314
|
+
*/
|
315
|
+
|
316
|
+
menu,
|
317
|
+
ol,
|
318
|
+
ul {
|
319
|
+
padding: 0 0 0 40px;
|
320
|
+
}
|
321
|
+
|
322
|
+
/**
|
323
|
+
* Correct list images handled incorrectly in IE 7.
|
324
|
+
*/
|
325
|
+
|
326
|
+
nav ul,
|
327
|
+
nav ol {
|
328
|
+
list-style: none;
|
329
|
+
list-style-image: none;
|
330
|
+
}
|
331
|
+
|
332
|
+
/* ==========================================================================
|
333
|
+
Embedded content
|
334
|
+
========================================================================== */
|
335
|
+
|
336
|
+
/**
|
337
|
+
* 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
|
338
|
+
* 2. Improve image quality when scaled in IE 7.
|
339
|
+
*/
|
340
|
+
|
341
|
+
img {
|
342
|
+
border: 0; /* 1 */
|
343
|
+
-ms-interpolation-mode: bicubic; /* 2 */
|
344
|
+
}
|
345
|
+
|
346
|
+
/**
|
347
|
+
* Correct overflow displayed oddly in IE 9.
|
348
|
+
*/
|
349
|
+
|
350
|
+
svg:not(:root) {
|
351
|
+
overflow: hidden;
|
352
|
+
}
|
353
|
+
|
354
|
+
/* ==========================================================================
|
355
|
+
Figures
|
356
|
+
========================================================================== */
|
357
|
+
|
358
|
+
/**
|
359
|
+
* Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
|
360
|
+
*/
|
361
|
+
|
362
|
+
figure {
|
363
|
+
margin: 0;
|
364
|
+
}
|
365
|
+
|
366
|
+
/* ==========================================================================
|
367
|
+
Forms
|
368
|
+
========================================================================== */
|
369
|
+
|
370
|
+
/**
|
371
|
+
* Correct margin displayed oddly in IE 6/7.
|
372
|
+
*/
|
373
|
+
|
374
|
+
form {
|
375
|
+
margin: 0;
|
376
|
+
}
|
377
|
+
|
378
|
+
/**
|
379
|
+
* Define consistent border, margin, and padding.
|
380
|
+
*/
|
381
|
+
|
382
|
+
fieldset {
|
383
|
+
border: 1px solid #c0c0c0;
|
384
|
+
margin: 0 2px;
|
385
|
+
padding: 0.35em 0.625em 0.75em;
|
386
|
+
}
|
387
|
+
|
388
|
+
/**
|
389
|
+
* 1. Correct color not being inherited in IE 6/7/8/9.
|
390
|
+
* 2. Correct text not wrapping in Firefox 3.
|
391
|
+
* 3. Correct alignment displayed oddly in IE 6/7.
|
392
|
+
*/
|
393
|
+
|
394
|
+
legend {
|
395
|
+
border: 0; /* 1 */
|
396
|
+
padding: 0;
|
397
|
+
white-space: normal; /* 2 */
|
398
|
+
*margin-left: -7px; /* 3 */
|
399
|
+
}
|
400
|
+
|
401
|
+
/**
|
402
|
+
* 1. Correct font size not being inherited in all browsers.
|
403
|
+
* 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
|
404
|
+
* and Chrome.
|
405
|
+
* 3. Improve appearance and consistency in all browsers.
|
406
|
+
*/
|
407
|
+
|
408
|
+
button,
|
409
|
+
input,
|
410
|
+
select,
|
411
|
+
textarea {
|
412
|
+
font-size: 100%; /* 1 */
|
413
|
+
margin: 0; /* 2 */
|
414
|
+
vertical-align: baseline; /* 3 */
|
415
|
+
*vertical-align: middle; /* 3 */
|
416
|
+
}
|
417
|
+
|
418
|
+
/**
|
419
|
+
* Address Firefox 3+ setting `line-height` on `input` using `!important` in
|
420
|
+
* the UA stylesheet.
|
421
|
+
*/
|
422
|
+
|
423
|
+
button,
|
424
|
+
input {
|
425
|
+
line-height: normal;
|
426
|
+
}
|
427
|
+
|
428
|
+
/**
|
429
|
+
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
430
|
+
* All other form control elements do not inherit `text-transform` values.
|
431
|
+
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
|
432
|
+
* Correct `select` style inheritance in Firefox 4+ and Opera.
|
433
|
+
*/
|
434
|
+
|
435
|
+
button,
|
436
|
+
select {
|
437
|
+
text-transform: none;
|
438
|
+
}
|
439
|
+
|
440
|
+
/**
|
441
|
+
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
442
|
+
* and `video` controls.
|
443
|
+
* 2. Correct inability to style clickable `input` types in iOS.
|
444
|
+
* 3. Improve usability and consistency of cursor style between image-type
|
445
|
+
* `input` and others.
|
446
|
+
* 4. Remove inner spacing in IE 7 without affecting normal text inputs.
|
447
|
+
* Known issue: inner spacing remains in IE 6.
|
448
|
+
*/
|
449
|
+
|
450
|
+
button,
|
451
|
+
html input[type="button"], /* 1 */
|
452
|
+
input[type="reset"],
|
453
|
+
input[type="submit"] {
|
454
|
+
-webkit-appearance: button; /* 2 */
|
455
|
+
cursor: pointer; /* 3 */
|
456
|
+
*overflow: visible; /* 4 */
|
457
|
+
}
|
458
|
+
|
459
|
+
/**
|
460
|
+
* Re-set default cursor for disabled elements.
|
461
|
+
*/
|
462
|
+
|
463
|
+
button[disabled],
|
464
|
+
html input[disabled] {
|
465
|
+
cursor: default;
|
466
|
+
}
|
467
|
+
|
468
|
+
/**
|
469
|
+
* 1. Address box sizing set to content-box in IE 8/9.
|
470
|
+
* 2. Remove excess padding in IE 8/9.
|
471
|
+
* 3. Remove excess padding in IE 7.
|
472
|
+
* Known issue: excess padding remains in IE 6.
|
473
|
+
*/
|
474
|
+
|
475
|
+
input[type="checkbox"],
|
476
|
+
input[type="radio"] {
|
477
|
+
box-sizing: border-box; /* 1 */
|
478
|
+
padding: 0; /* 2 */
|
479
|
+
*height: 13px; /* 3 */
|
480
|
+
*width: 13px; /* 3 */
|
481
|
+
}
|
482
|
+
|
483
|
+
/**
|
484
|
+
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
|
485
|
+
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
|
486
|
+
* (include `-moz` to future-proof).
|
487
|
+
*/
|
488
|
+
|
489
|
+
input[type="search"] {
|
490
|
+
-webkit-appearance: textfield; /* 1 */
|
491
|
+
-moz-box-sizing: content-box;
|
492
|
+
-webkit-box-sizing: content-box; /* 2 */
|
493
|
+
box-sizing: content-box;
|
494
|
+
}
|
495
|
+
|
496
|
+
/**
|
497
|
+
* Remove inner padding and search cancel button in Safari 5 and Chrome
|
498
|
+
* on OS X.
|
499
|
+
*/
|
500
|
+
|
501
|
+
input[type="search"]::-webkit-search-cancel-button,
|
502
|
+
input[type="search"]::-webkit-search-decoration {
|
503
|
+
-webkit-appearance: none;
|
504
|
+
}
|
505
|
+
|
506
|
+
/**
|
507
|
+
* Remove inner padding and border in Firefox 3+.
|
508
|
+
*/
|
509
|
+
|
510
|
+
button::-moz-focus-inner,
|
511
|
+
input::-moz-focus-inner {
|
512
|
+
border: 0;
|
513
|
+
padding: 0;
|
514
|
+
}
|
515
|
+
|
516
|
+
/**
|
517
|
+
* 1. Remove default vertical scrollbar in IE 6/7/8/9.
|
518
|
+
* 2. Improve readability and alignment in all browsers.
|
519
|
+
*/
|
520
|
+
|
521
|
+
textarea {
|
522
|
+
overflow: auto; /* 1 */
|
523
|
+
vertical-align: top; /* 2 */
|
524
|
+
}
|
525
|
+
|
526
|
+
/* ==========================================================================
|
527
|
+
Tables
|
528
|
+
========================================================================== */
|
529
|
+
|
530
|
+
/**
|
531
|
+
* Remove most spacing between table cells.
|
532
|
+
*/
|
533
|
+
|
534
|
+
table {
|
535
|
+
border-collapse: collapse;
|
536
|
+
border-spacing: 0;
|
537
|
+
}
|
538
|
+
|
539
|
+
/*csslint important:false*/
|
540
|
+
|
541
|
+
/* ==========================================================================
|
542
|
+
Pure Base Extras
|
543
|
+
========================================================================== */
|
544
|
+
|
545
|
+
/**
|
546
|
+
* Extra rules that Pure adds on top of Normalize.css
|
547
|
+
*/
|
548
|
+
|
549
|
+
/**
|
550
|
+
* Always hide an element when it has the `hidden` HTML attribute.
|
551
|
+
*/
|
552
|
+
|
553
|
+
[hidden] {
|
554
|
+
display: none !important;
|
555
|
+
}
|
556
|
+
|
557
|
+
/**
|
558
|
+
* Add this class to an image to make it fit within it's fluid parent wrapper while maintaining
|
559
|
+
* aspect ratio.
|
560
|
+
*/
|
561
|
+
.pure-img {
|
562
|
+
max-width: 100%;
|
563
|
+
height: auto;
|
564
|
+
display: block;
|
565
|
+
}
|
566
|
+
|
567
|
+
/*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/
|
568
|
+
|
569
|
+
.pure-g {
|
570
|
+
letter-spacing: -0.31em; /* Webkit: collapse white-space between units */
|
571
|
+
*letter-spacing: normal; /* reset IE < 8 */
|
572
|
+
*word-spacing: -0.43em; /* IE < 8: collapse white-space between units */
|
573
|
+
text-rendering: optimizespeed; /* Webkit: fixes text-rendering: optimizeLegibility */
|
574
|
+
|
575
|
+
/*
|
576
|
+
Sets the font stack to fonts known to work properly with the above letter
|
577
|
+
and word spacings. See: https://github.com/yui/pure/issues/41/
|
578
|
+
|
579
|
+
The following font stack makes Pure Grids work on all known environments.
|
580
|
+
|
581
|
+
* FreeSans: Ships with many Linux distros, including Ubuntu
|
582
|
+
|
583
|
+
* Arimo: Ships with Chrome OS. Arimo has to be defined before Helvetica and
|
584
|
+
Arial to get picked up by the browser, even though neither is available
|
585
|
+
in Chrome OS.
|
586
|
+
|
587
|
+
* Droid Sans: Ships with all versions of Android.
|
588
|
+
|
589
|
+
* Helvetica, Arial, sans-serif: Common font stack on OS X and Windows.
|
590
|
+
*/
|
591
|
+
font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif;
|
592
|
+
|
593
|
+
/*
|
594
|
+
Use flexbox when possible to avoid `letter-spacing` side-effects.
|
595
|
+
|
596
|
+
NOTE: Firefox (as of 25) does not currently support flex-wrap, so the
|
597
|
+
`-moz-` prefix version is omitted.
|
598
|
+
*/
|
599
|
+
|
600
|
+
display: -webkit-flex;
|
601
|
+
-webkit-flex-flow: row wrap;
|
602
|
+
|
603
|
+
/* IE10 uses display: flexbox */
|
604
|
+
display: -ms-flexbox;
|
605
|
+
-ms-flex-flow: row wrap;
|
606
|
+
}
|
607
|
+
|
608
|
+
/* Opera as of 12 on Windows needs word-spacing.
|
609
|
+
The ".opera-only" selector is used to prevent actual prefocus styling
|
610
|
+
and is not required in markup.
|
611
|
+
*/
|
612
|
+
.opera-only :-o-prefocus,
|
613
|
+
.pure-g {
|
614
|
+
word-spacing: -0.43em;
|
615
|
+
}
|
616
|
+
|
617
|
+
.pure-u {
|
618
|
+
display: inline-block;
|
619
|
+
*display: inline; /* IE < 8: fake inline-block */
|
620
|
+
zoom: 1;
|
621
|
+
letter-spacing: normal;
|
622
|
+
word-spacing: normal;
|
623
|
+
vertical-align: top;
|
624
|
+
text-rendering: auto;
|
625
|
+
}
|
626
|
+
|
627
|
+
/*
|
628
|
+
Resets the font family back to the OS/browser's default sans-serif font,
|
629
|
+
this the same font stack that Normalize.css sets for the `body`.
|
630
|
+
*/
|
631
|
+
.pure-g [class *= "pure-u"] {
|
632
|
+
font-family: sans-serif;
|
633
|
+
}
|
634
|
+
|
635
|
+
.pure-u-1,
|
636
|
+
.pure-u-1-1,
|
637
|
+
.pure-u-1-2,
|
638
|
+
.pure-u-1-3,
|
639
|
+
.pure-u-2-3,
|
640
|
+
.pure-u-1-4,
|
641
|
+
.pure-u-3-4,
|
642
|
+
.pure-u-1-5,
|
643
|
+
.pure-u-2-5,
|
644
|
+
.pure-u-3-5,
|
645
|
+
.pure-u-4-5,
|
646
|
+
.pure-u-5-5,
|
647
|
+
.pure-u-1-6,
|
648
|
+
.pure-u-5-6,
|
649
|
+
.pure-u-1-8,
|
650
|
+
.pure-u-3-8,
|
651
|
+
.pure-u-5-8,
|
652
|
+
.pure-u-7-8,
|
653
|
+
.pure-u-1-12,
|
654
|
+
.pure-u-5-12,
|
655
|
+
.pure-u-7-12,
|
656
|
+
.pure-u-11-12,
|
657
|
+
.pure-u-1-24,
|
658
|
+
.pure-u-2-24,
|
659
|
+
.pure-u-3-24,
|
660
|
+
.pure-u-4-24,
|
661
|
+
.pure-u-5-24,
|
662
|
+
.pure-u-6-24,
|
663
|
+
.pure-u-7-24,
|
664
|
+
.pure-u-8-24,
|
665
|
+
.pure-u-9-24,
|
666
|
+
.pure-u-10-24,
|
667
|
+
.pure-u-11-24,
|
668
|
+
.pure-u-12-24,
|
669
|
+
.pure-u-13-24,
|
670
|
+
.pure-u-14-24,
|
671
|
+
.pure-u-15-24,
|
672
|
+
.pure-u-16-24,
|
673
|
+
.pure-u-17-24,
|
674
|
+
.pure-u-18-24,
|
675
|
+
.pure-u-19-24,
|
676
|
+
.pure-u-20-24,
|
677
|
+
.pure-u-21-24,
|
678
|
+
.pure-u-22-24,
|
679
|
+
.pure-u-23-24,
|
680
|
+
.pure-u-24-24 {
|
681
|
+
display: inline-block;
|
682
|
+
*display: inline;
|
683
|
+
zoom: 1;
|
684
|
+
letter-spacing: normal;
|
685
|
+
word-spacing: normal;
|
686
|
+
vertical-align: top;
|
687
|
+
text-rendering: auto;
|
688
|
+
}
|
689
|
+
|
690
|
+
.pure-u-1-24 {
|
691
|
+
width: 4.1667%;
|
692
|
+
*width: 4.1357%;
|
693
|
+
}
|
694
|
+
|
695
|
+
.pure-u-1-12,
|
696
|
+
.pure-u-2-24 {
|
697
|
+
width: 8.3333%;
|
698
|
+
*width: 8.3023%;
|
699
|
+
}
|
700
|
+
|
701
|
+
.pure-u-1-8,
|
702
|
+
.pure-u-3-24 {
|
703
|
+
width: 12.5000%;
|
704
|
+
*width: 12.4690%;
|
705
|
+
}
|
706
|
+
|
707
|
+
.pure-u-1-6,
|
708
|
+
.pure-u-4-24 {
|
709
|
+
width: 16.6667%;
|
710
|
+
*width: 16.6357%;
|
711
|
+
}
|
712
|
+
|
713
|
+
.pure-u-1-5 {
|
714
|
+
width: 20%;
|
715
|
+
*width: 19.9690%;
|
716
|
+
}
|
717
|
+
|
718
|
+
.pure-u-5-24 {
|
719
|
+
width: 20.8333%;
|
720
|
+
*width: 20.8023%;
|
721
|
+
}
|
722
|
+
|
723
|
+
.pure-u-1-4,
|
724
|
+
.pure-u-6-24 {
|
725
|
+
width: 25%;
|
726
|
+
*width: 24.9690%;
|
727
|
+
}
|
728
|
+
|
729
|
+
.pure-u-7-24 {
|
730
|
+
width: 29.1667%;
|
731
|
+
*width: 29.1357%;
|
732
|
+
}
|
733
|
+
|
734
|
+
.pure-u-1-3,
|
735
|
+
.pure-u-8-24 {
|
736
|
+
width: 33.3333%;
|
737
|
+
*width: 33.3023%;
|
738
|
+
}
|
739
|
+
|
740
|
+
.pure-u-3-8,
|
741
|
+
.pure-u-9-24 {
|
742
|
+
width: 37.5000%;
|
743
|
+
*width: 37.4690%;
|
744
|
+
}
|
745
|
+
|
746
|
+
.pure-u-2-5 {
|
747
|
+
width: 40%;
|
748
|
+
*width: 39.9690%;
|
749
|
+
}
|
750
|
+
|
751
|
+
.pure-u-5-12,
|
752
|
+
.pure-u-10-24 {
|
753
|
+
width: 41.6667%;
|
754
|
+
*width: 41.6357%;
|
755
|
+
}
|
756
|
+
|
757
|
+
.pure-u-11-24 {
|
758
|
+
width: 45.8333%;
|
759
|
+
*width: 45.8023%;
|
760
|
+
}
|
761
|
+
|
762
|
+
.pure-u-1-2,
|
763
|
+
.pure-u-12-24 {
|
764
|
+
width: 50%;
|
765
|
+
*width: 49.9690%;
|
766
|
+
}
|
767
|
+
|
768
|
+
.pure-u-13-24 {
|
769
|
+
width: 54.1667%;
|
770
|
+
*width: 54.1357%;
|
771
|
+
}
|
772
|
+
|
773
|
+
.pure-u-7-12,
|
774
|
+
.pure-u-14-24 {
|
775
|
+
width: 58.3333%;
|
776
|
+
*width: 58.3023%;
|
777
|
+
}
|
778
|
+
|
779
|
+
.pure-u-3-5 {
|
780
|
+
width: 60%;
|
781
|
+
*width: 59.9690%;
|
782
|
+
}
|
783
|
+
|
784
|
+
.pure-u-5-8,
|
785
|
+
.pure-u-15-24 {
|
786
|
+
width: 62.5000%;
|
787
|
+
*width: 62.4690%;
|
788
|
+
}
|
789
|
+
|
790
|
+
.pure-u-2-3,
|
791
|
+
.pure-u-16-24 {
|
792
|
+
width: 66.6667%;
|
793
|
+
*width: 66.6357%;
|
794
|
+
}
|
795
|
+
|
796
|
+
.pure-u-17-24 {
|
797
|
+
width: 70.8333%;
|
798
|
+
*width: 70.8023%;
|
799
|
+
}
|
800
|
+
|
801
|
+
.pure-u-3-4,
|
802
|
+
.pure-u-18-24 {
|
803
|
+
width: 75%;
|
804
|
+
*width: 74.9690%;
|
805
|
+
}
|
806
|
+
|
807
|
+
.pure-u-19-24 {
|
808
|
+
width: 79.1667%;
|
809
|
+
*width: 79.1357%;
|
810
|
+
}
|
811
|
+
|
812
|
+
.pure-u-4-5 {
|
813
|
+
width: 80%;
|
814
|
+
*width: 79.9690%;
|
815
|
+
}
|
816
|
+
|
817
|
+
.pure-u-5-6,
|
818
|
+
.pure-u-20-24 {
|
819
|
+
width: 83.3333%;
|
820
|
+
*width: 83.3023%;
|
821
|
+
}
|
822
|
+
|
823
|
+
.pure-u-7-8,
|
824
|
+
.pure-u-21-24 {
|
825
|
+
width: 87.5000%;
|
826
|
+
*width: 87.4690%;
|
827
|
+
}
|
828
|
+
|
829
|
+
.pure-u-11-12,
|
830
|
+
.pure-u-22-24 {
|
831
|
+
width: 91.6667%;
|
832
|
+
*width: 91.6357%;
|
833
|
+
}
|
834
|
+
|
835
|
+
.pure-u-23-24 {
|
836
|
+
width: 95.8333%;
|
837
|
+
*width: 95.8023%;
|
838
|
+
}
|
839
|
+
|
840
|
+
.pure-u-1,
|
841
|
+
.pure-u-1-1,
|
842
|
+
.pure-u-5-5,
|
843
|
+
.pure-u-24-24 {
|
844
|
+
width: 100%;
|
845
|
+
}
|
846
|
+
.pure-button {
|
847
|
+
/* Structure */
|
848
|
+
display: inline-block;
|
849
|
+
*display: inline; /*IE 6/7*/
|
850
|
+
zoom: 1;
|
851
|
+
line-height: normal;
|
852
|
+
white-space: nowrap;
|
853
|
+
vertical-align: baseline;
|
854
|
+
text-align: center;
|
855
|
+
cursor: pointer;
|
856
|
+
-webkit-user-drag: none;
|
857
|
+
-webkit-user-select: none;
|
858
|
+
-moz-user-select: none;
|
859
|
+
-ms-user-select: none;
|
860
|
+
user-select: none;
|
861
|
+
}
|
862
|
+
|
863
|
+
/* Firefox: Get rid of the inner focus border */
|
864
|
+
.pure-button::-moz-focus-inner {
|
865
|
+
padding: 0;
|
866
|
+
border: 0;
|
867
|
+
}
|
868
|
+
|
869
|
+
/*csslint outline-none:false*/
|
870
|
+
|
871
|
+
.pure-button {
|
872
|
+
font-family: inherit;
|
873
|
+
font-size: 100%;
|
874
|
+
*font-size: 90%; /*IE 6/7 - To reduce IE's oversized button text*/
|
875
|
+
*overflow: visible; /*IE 6/7 - Because of IE's overly large left/right padding on buttons */
|
876
|
+
padding: 0.5em 1em;
|
877
|
+
color: #444; /* rgba not supported (IE 8) */
|
878
|
+
color: rgba(0, 0, 0, 0.80); /* rgba supported */
|
879
|
+
*color: #444; /* IE 6 & 7 */
|
880
|
+
border: 1px solid #999; /*IE 6/7/8*/
|
881
|
+
border: none rgba(0, 0, 0, 0); /*IE9 + everything else*/
|
882
|
+
background-color: #E6E6E6;
|
883
|
+
text-decoration: none;
|
884
|
+
border-radius: 2px;
|
885
|
+
}
|
886
|
+
|
887
|
+
.pure-button-hover,
|
888
|
+
.pure-button:hover,
|
889
|
+
.pure-button:focus {
|
890
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000',GradientType=0);
|
891
|
+
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.10)));
|
892
|
+
background-image: -webkit-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
|
893
|
+
background-image: -moz-linear-gradient(top, rgba(0,0,0, 0.05) 0%, rgba(0,0,0, 0.10));
|
894
|
+
background-image: -o-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
|
895
|
+
background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
|
896
|
+
}
|
897
|
+
.pure-button:focus {
|
898
|
+
outline: 0;
|
899
|
+
}
|
900
|
+
.pure-button-active,
|
901
|
+
.pure-button:active {
|
902
|
+
box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
|
903
|
+
}
|
904
|
+
|
905
|
+
.pure-button[disabled],
|
906
|
+
.pure-button-disabled,
|
907
|
+
.pure-button-disabled:hover,
|
908
|
+
.pure-button-disabled:focus,
|
909
|
+
.pure-button-disabled:active {
|
910
|
+
border: none;
|
911
|
+
background-image: none;
|
912
|
+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
|
913
|
+
filter: alpha(opacity=40);
|
914
|
+
-khtml-opacity: 0.40;
|
915
|
+
-moz-opacity: 0.40;
|
916
|
+
opacity: 0.40;
|
917
|
+
cursor: not-allowed;
|
918
|
+
box-shadow: none;
|
919
|
+
}
|
920
|
+
|
921
|
+
.pure-button-hidden {
|
922
|
+
display: none;
|
923
|
+
}
|
924
|
+
|
925
|
+
/* Firefox: Get rid of the inner focus border */
|
926
|
+
.pure-button::-moz-focus-inner{
|
927
|
+
padding: 0;
|
928
|
+
border: 0;
|
929
|
+
}
|
930
|
+
|
931
|
+
.pure-button-primary,
|
932
|
+
.pure-button-selected,
|
933
|
+
a.pure-button-primary,
|
934
|
+
a.pure-button-selected {
|
935
|
+
background-color: rgb(0, 120, 231);
|
936
|
+
color: #fff;
|
937
|
+
}
|
938
|
+
|
939
|
+
.pure-form input[type="text"],
|
940
|
+
.pure-form input[type="password"],
|
941
|
+
.pure-form input[type="email"],
|
942
|
+
.pure-form input[type="url"],
|
943
|
+
.pure-form input[type="date"],
|
944
|
+
.pure-form input[type="month"],
|
945
|
+
.pure-form input[type="time"],
|
946
|
+
.pure-form input[type="datetime"],
|
947
|
+
.pure-form input[type="datetime-local"],
|
948
|
+
.pure-form input[type="week"],
|
949
|
+
.pure-form input[type="number"],
|
950
|
+
.pure-form input[type="search"],
|
951
|
+
.pure-form input[type="tel"],
|
952
|
+
.pure-form input[type="color"],
|
953
|
+
.pure-form select,
|
954
|
+
.pure-form textarea {
|
955
|
+
padding: 0.5em 0.6em;
|
956
|
+
display: inline-block;
|
957
|
+
border: 1px solid #ccc;
|
958
|
+
box-shadow: inset 0 1px 3px #ddd;
|
959
|
+
border-radius: 4px;
|
960
|
+
-webkit-box-sizing: border-box;
|
961
|
+
-moz-box-sizing: border-box;
|
962
|
+
box-sizing: border-box;
|
963
|
+
}
|
964
|
+
|
965
|
+
/*
|
966
|
+
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
|
967
|
+
since IE8 won't execute CSS that contains a CSS3 selector.
|
968
|
+
*/
|
969
|
+
.pure-form input:not([type]) {
|
970
|
+
padding: 0.5em 0.6em;
|
971
|
+
display: inline-block;
|
972
|
+
border: 1px solid #ccc;
|
973
|
+
box-shadow: inset 0 1px 3px #ddd;
|
974
|
+
border-radius: 4px;
|
975
|
+
-webkit-box-sizing: border-box;
|
976
|
+
-moz-box-sizing: border-box;
|
977
|
+
box-sizing: border-box;
|
978
|
+
}
|
979
|
+
|
980
|
+
|
981
|
+
/* Chrome (as of v.32/34 on OS X) needs additional room for color to display. */
|
982
|
+
/* May be able to remove this tweak as color inputs become more standardized across browsers. */
|
983
|
+
.pure-form input[type="color"] {
|
984
|
+
padding: 0.2em 0.5em;
|
985
|
+
}
|
986
|
+
|
987
|
+
|
988
|
+
.pure-form input[type="text"]:focus,
|
989
|
+
.pure-form input[type="password"]:focus,
|
990
|
+
.pure-form input[type="email"]:focus,
|
991
|
+
.pure-form input[type="url"]:focus,
|
992
|
+
.pure-form input[type="date"]:focus,
|
993
|
+
.pure-form input[type="month"]:focus,
|
994
|
+
.pure-form input[type="time"]:focus,
|
995
|
+
.pure-form input[type="datetime"]:focus,
|
996
|
+
.pure-form input[type="datetime-local"]:focus,
|
997
|
+
.pure-form input[type="week"]:focus,
|
998
|
+
.pure-form input[type="number"]:focus,
|
999
|
+
.pure-form input[type="search"]:focus,
|
1000
|
+
.pure-form input[type="tel"]:focus,
|
1001
|
+
.pure-form input[type="color"]:focus,
|
1002
|
+
.pure-form select:focus,
|
1003
|
+
.pure-form textarea:focus {
|
1004
|
+
outline: 0;
|
1005
|
+
outline: thin dotted \9; /* IE6-9 */
|
1006
|
+
border-color: #129FEA;
|
1007
|
+
}
|
1008
|
+
|
1009
|
+
/*
|
1010
|
+
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
|
1011
|
+
since IE8 won't execute CSS that contains a CSS3 selector.
|
1012
|
+
*/
|
1013
|
+
.pure-form input:not([type]):focus {
|
1014
|
+
outline: 0;
|
1015
|
+
outline: thin dotted \9; /* IE6-9 */
|
1016
|
+
border-color: #129FEA;
|
1017
|
+
}
|
1018
|
+
|
1019
|
+
.pure-form input[type="file"]:focus,
|
1020
|
+
.pure-form input[type="radio"]:focus,
|
1021
|
+
.pure-form input[type="checkbox"]:focus {
|
1022
|
+
outline: thin dotted #333;
|
1023
|
+
outline: 1px auto #129FEA;
|
1024
|
+
}
|
1025
|
+
.pure-form .pure-checkbox,
|
1026
|
+
.pure-form .pure-radio {
|
1027
|
+
margin: 0.5em 0;
|
1028
|
+
display: block;
|
1029
|
+
}
|
1030
|
+
|
1031
|
+
.pure-form input[type="text"][disabled],
|
1032
|
+
.pure-form input[type="password"][disabled],
|
1033
|
+
.pure-form input[type="email"][disabled],
|
1034
|
+
.pure-form input[type="url"][disabled],
|
1035
|
+
.pure-form input[type="date"][disabled],
|
1036
|
+
.pure-form input[type="month"][disabled],
|
1037
|
+
.pure-form input[type="time"][disabled],
|
1038
|
+
.pure-form input[type="datetime"][disabled],
|
1039
|
+
.pure-form input[type="datetime-local"][disabled],
|
1040
|
+
.pure-form input[type="week"][disabled],
|
1041
|
+
.pure-form input[type="number"][disabled],
|
1042
|
+
.pure-form input[type="search"][disabled],
|
1043
|
+
.pure-form input[type="tel"][disabled],
|
1044
|
+
.pure-form input[type="color"][disabled],
|
1045
|
+
.pure-form select[disabled],
|
1046
|
+
.pure-form textarea[disabled] {
|
1047
|
+
cursor: not-allowed;
|
1048
|
+
background-color: #eaeded;
|
1049
|
+
color: #cad2d3;
|
1050
|
+
}
|
1051
|
+
|
1052
|
+
/*
|
1053
|
+
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
|
1054
|
+
since IE8 won't execute CSS that contains a CSS3 selector.
|
1055
|
+
*/
|
1056
|
+
.pure-form input:not([type])[disabled] {
|
1057
|
+
cursor: not-allowed;
|
1058
|
+
background-color: #eaeded;
|
1059
|
+
color: #cad2d3;
|
1060
|
+
}
|
1061
|
+
.pure-form input[readonly],
|
1062
|
+
.pure-form select[readonly],
|
1063
|
+
.pure-form textarea[readonly] {
|
1064
|
+
background: #eee; /* menu hover bg color */
|
1065
|
+
color: #777; /* menu text color */
|
1066
|
+
border-color: #ccc;
|
1067
|
+
}
|
1068
|
+
|
1069
|
+
.pure-form input:focus:invalid,
|
1070
|
+
.pure-form textarea:focus:invalid,
|
1071
|
+
.pure-form select:focus:invalid {
|
1072
|
+
color: #b94a48;
|
1073
|
+
border-color: #ee5f5b;
|
1074
|
+
}
|
1075
|
+
.pure-form input:focus:invalid:focus,
|
1076
|
+
.pure-form textarea:focus:invalid:focus,
|
1077
|
+
.pure-form select:focus:invalid:focus {
|
1078
|
+
border-color: #e9322d;
|
1079
|
+
}
|
1080
|
+
.pure-form input[type="file"]:focus:invalid:focus,
|
1081
|
+
.pure-form input[type="radio"]:focus:invalid:focus,
|
1082
|
+
.pure-form input[type="checkbox"]:focus:invalid:focus {
|
1083
|
+
outline-color: #e9322d;
|
1084
|
+
}
|
1085
|
+
.pure-form select {
|
1086
|
+
border: 1px solid #ccc;
|
1087
|
+
background-color: white;
|
1088
|
+
}
|
1089
|
+
.pure-form select[multiple] {
|
1090
|
+
height: auto;
|
1091
|
+
}
|
1092
|
+
.pure-form label {
|
1093
|
+
margin: 0.5em 0 0.2em;
|
1094
|
+
}
|
1095
|
+
.pure-form fieldset {
|
1096
|
+
margin: 0;
|
1097
|
+
padding: 0.35em 0 0.75em;
|
1098
|
+
border: 0;
|
1099
|
+
}
|
1100
|
+
.pure-form legend {
|
1101
|
+
display: block;
|
1102
|
+
width: 100%;
|
1103
|
+
padding: 0.3em 0;
|
1104
|
+
margin-bottom: 0.3em;
|
1105
|
+
color: #333;
|
1106
|
+
border-bottom: 1px solid #e5e5e5;
|
1107
|
+
}
|
1108
|
+
|
1109
|
+
.pure-form-stacked input[type="text"],
|
1110
|
+
.pure-form-stacked input[type="password"],
|
1111
|
+
.pure-form-stacked input[type="email"],
|
1112
|
+
.pure-form-stacked input[type="url"],
|
1113
|
+
.pure-form-stacked input[type="date"],
|
1114
|
+
.pure-form-stacked input[type="month"],
|
1115
|
+
.pure-form-stacked input[type="time"],
|
1116
|
+
.pure-form-stacked input[type="datetime"],
|
1117
|
+
.pure-form-stacked input[type="datetime-local"],
|
1118
|
+
.pure-form-stacked input[type="week"],
|
1119
|
+
.pure-form-stacked input[type="number"],
|
1120
|
+
.pure-form-stacked input[type="search"],
|
1121
|
+
.pure-form-stacked input[type="tel"],
|
1122
|
+
.pure-form-stacked input[type="color"],
|
1123
|
+
.pure-form-stacked select,
|
1124
|
+
.pure-form-stacked label,
|
1125
|
+
.pure-form-stacked textarea {
|
1126
|
+
display: block;
|
1127
|
+
margin: 0.25em 0;
|
1128
|
+
}
|
1129
|
+
|
1130
|
+
/*
|
1131
|
+
Need to separate out the :not() selector from the rest of the CSS 2.1 selectors
|
1132
|
+
since IE8 won't execute CSS that contains a CSS3 selector.
|
1133
|
+
*/
|
1134
|
+
.pure-form-stacked input:not([type]) {
|
1135
|
+
display: block;
|
1136
|
+
margin: 0.25em 0;
|
1137
|
+
}
|
1138
|
+
.pure-form-aligned input,
|
1139
|
+
.pure-form-aligned textarea,
|
1140
|
+
.pure-form-aligned select,
|
1141
|
+
/* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
|
1142
|
+
.pure-form-aligned .pure-help-inline,
|
1143
|
+
.pure-form-message-inline {
|
1144
|
+
display: inline-block;
|
1145
|
+
*display: inline;
|
1146
|
+
*zoom: 1;
|
1147
|
+
vertical-align: middle;
|
1148
|
+
}
|
1149
|
+
.pure-form-aligned textarea {
|
1150
|
+
vertical-align: top;
|
1151
|
+
}
|
1152
|
+
|
1153
|
+
/* Aligned Forms */
|
1154
|
+
.pure-form-aligned .pure-control-group {
|
1155
|
+
margin-bottom: 0.5em;
|
1156
|
+
}
|
1157
|
+
.pure-form-aligned .pure-control-group label {
|
1158
|
+
text-align: right;
|
1159
|
+
display: inline-block;
|
1160
|
+
vertical-align: middle;
|
1161
|
+
width: 10em;
|
1162
|
+
margin: 0 1em 0 0;
|
1163
|
+
}
|
1164
|
+
.pure-form-aligned .pure-controls {
|
1165
|
+
margin: 1.5em 0 0 10em;
|
1166
|
+
}
|
1167
|
+
|
1168
|
+
/* Rounded Inputs */
|
1169
|
+
.pure-form input.pure-input-rounded,
|
1170
|
+
.pure-form .pure-input-rounded {
|
1171
|
+
border-radius: 2em;
|
1172
|
+
padding: 0.5em 1em;
|
1173
|
+
}
|
1174
|
+
|
1175
|
+
/* Grouped Inputs */
|
1176
|
+
.pure-form .pure-group fieldset {
|
1177
|
+
margin-bottom: 10px;
|
1178
|
+
}
|
1179
|
+
.pure-form .pure-group input {
|
1180
|
+
display: block;
|
1181
|
+
padding: 10px;
|
1182
|
+
margin: 0;
|
1183
|
+
border-radius: 0;
|
1184
|
+
position: relative;
|
1185
|
+
top: -1px;
|
1186
|
+
}
|
1187
|
+
.pure-form .pure-group input:focus {
|
1188
|
+
z-index: 2;
|
1189
|
+
}
|
1190
|
+
.pure-form .pure-group input:first-child {
|
1191
|
+
top: 1px;
|
1192
|
+
border-radius: 4px 4px 0 0;
|
1193
|
+
}
|
1194
|
+
.pure-form .pure-group input:last-child {
|
1195
|
+
top: -2px;
|
1196
|
+
border-radius: 0 0 4px 4px;
|
1197
|
+
}
|
1198
|
+
.pure-form .pure-group button {
|
1199
|
+
margin: 0.35em 0;
|
1200
|
+
}
|
1201
|
+
|
1202
|
+
.pure-form .pure-input-1 {
|
1203
|
+
width: 100%;
|
1204
|
+
}
|
1205
|
+
.pure-form .pure-input-2-3 {
|
1206
|
+
width: 66%;
|
1207
|
+
}
|
1208
|
+
.pure-form .pure-input-1-2 {
|
1209
|
+
width: 50%;
|
1210
|
+
}
|
1211
|
+
.pure-form .pure-input-1-3 {
|
1212
|
+
width: 33%;
|
1213
|
+
}
|
1214
|
+
.pure-form .pure-input-1-4 {
|
1215
|
+
width: 25%;
|
1216
|
+
}
|
1217
|
+
|
1218
|
+
/* Inline help for forms */
|
1219
|
+
/* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
|
1220
|
+
.pure-form .pure-help-inline,
|
1221
|
+
.pure-form-message-inline {
|
1222
|
+
display: inline-block;
|
1223
|
+
padding-left: 0.3em;
|
1224
|
+
color: #666;
|
1225
|
+
vertical-align: middle;
|
1226
|
+
font-size: 0.875em;
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
/* Block help for forms */
|
1230
|
+
.pure-form-message {
|
1231
|
+
display: block;
|
1232
|
+
color: #666;
|
1233
|
+
font-size: 0.875em;
|
1234
|
+
}
|
1235
|
+
|
1236
|
+
@media only screen and (max-width : 480px) {
|
1237
|
+
.pure-form button[type="submit"] {
|
1238
|
+
margin: 0.7em 0 0;
|
1239
|
+
}
|
1240
|
+
|
1241
|
+
.pure-form input:not([type]),
|
1242
|
+
.pure-form input[type="text"],
|
1243
|
+
.pure-form input[type="password"],
|
1244
|
+
.pure-form input[type="email"],
|
1245
|
+
.pure-form input[type="url"],
|
1246
|
+
.pure-form input[type="date"],
|
1247
|
+
.pure-form input[type="month"],
|
1248
|
+
.pure-form input[type="time"],
|
1249
|
+
.pure-form input[type="datetime"],
|
1250
|
+
.pure-form input[type="datetime-local"],
|
1251
|
+
.pure-form input[type="week"],
|
1252
|
+
.pure-form input[type="number"],
|
1253
|
+
.pure-form input[type="search"],
|
1254
|
+
.pure-form input[type="tel"],
|
1255
|
+
.pure-form input[type="color"],
|
1256
|
+
.pure-form label {
|
1257
|
+
margin-bottom: 0.3em;
|
1258
|
+
display: block;
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
.pure-group input:not([type]),
|
1262
|
+
.pure-group input[type="text"],
|
1263
|
+
.pure-group input[type="password"],
|
1264
|
+
.pure-group input[type="email"],
|
1265
|
+
.pure-group input[type="url"],
|
1266
|
+
.pure-group input[type="date"],
|
1267
|
+
.pure-group input[type="month"],
|
1268
|
+
.pure-group input[type="time"],
|
1269
|
+
.pure-group input[type="datetime"],
|
1270
|
+
.pure-group input[type="datetime-local"],
|
1271
|
+
.pure-group input[type="week"],
|
1272
|
+
.pure-group input[type="number"],
|
1273
|
+
.pure-group input[type="search"],
|
1274
|
+
.pure-group input[type="tel"],
|
1275
|
+
.pure-group input[type="color"] {
|
1276
|
+
margin-bottom: 0;
|
1277
|
+
}
|
1278
|
+
|
1279
|
+
.pure-form-aligned .pure-control-group label {
|
1280
|
+
margin-bottom: 0.3em;
|
1281
|
+
text-align: left;
|
1282
|
+
display: block;
|
1283
|
+
width: 100%;
|
1284
|
+
}
|
1285
|
+
|
1286
|
+
.pure-form-aligned .pure-controls {
|
1287
|
+
margin: 1.5em 0 0 0;
|
1288
|
+
}
|
1289
|
+
|
1290
|
+
/* NOTE: pure-help-inline is deprecated. Use .pure-form-message-inline instead. */
|
1291
|
+
.pure-form .pure-help-inline,
|
1292
|
+
.pure-form-message-inline,
|
1293
|
+
.pure-form-message {
|
1294
|
+
display: block;
|
1295
|
+
font-size: 0.75em;
|
1296
|
+
/* Increased bottom padding to make it group with its related input element. */
|
1297
|
+
padding: 0.2em 0 0.8em;
|
1298
|
+
}
|
1299
|
+
}
|
1300
|
+
|
1301
|
+
/*csslint adjoining-classes:false, outline-none:false*/
|
1302
|
+
/*TODO: Remove this lint rule override after a refactor of this code.*/
|
1303
|
+
|
1304
|
+
.pure-menu ul {
|
1305
|
+
position: absolute;
|
1306
|
+
visibility: hidden;
|
1307
|
+
}
|
1308
|
+
|
1309
|
+
.pure-menu.pure-menu-open {
|
1310
|
+
visibility: visible;
|
1311
|
+
z-index: 2;
|
1312
|
+
width: 100%;
|
1313
|
+
}
|
1314
|
+
|
1315
|
+
.pure-menu ul {
|
1316
|
+
left: -10000px;
|
1317
|
+
list-style: none;
|
1318
|
+
margin: 0;
|
1319
|
+
padding: 0;
|
1320
|
+
top: -10000px;
|
1321
|
+
z-index: 1;
|
1322
|
+
}
|
1323
|
+
|
1324
|
+
.pure-menu > ul { position: relative; }
|
1325
|
+
|
1326
|
+
.pure-menu-open > ul {
|
1327
|
+
left: 0;
|
1328
|
+
top: 0;
|
1329
|
+
visibility: visible;
|
1330
|
+
}
|
1331
|
+
|
1332
|
+
.pure-menu-open > ul:focus {
|
1333
|
+
outline: 0;
|
1334
|
+
}
|
1335
|
+
|
1336
|
+
.pure-menu li { position: relative; }
|
1337
|
+
|
1338
|
+
.pure-menu a,
|
1339
|
+
.pure-menu .pure-menu-heading {
|
1340
|
+
display: block;
|
1341
|
+
color: inherit;
|
1342
|
+
line-height: 1.5em;
|
1343
|
+
padding: 5px 20px;
|
1344
|
+
text-decoration: none;
|
1345
|
+
white-space: nowrap;
|
1346
|
+
}
|
1347
|
+
|
1348
|
+
.pure-menu.pure-menu-horizontal > .pure-menu-heading {
|
1349
|
+
display: inline-block;
|
1350
|
+
*display: inline;
|
1351
|
+
zoom: 1;
|
1352
|
+
margin: 0;
|
1353
|
+
vertical-align: middle;
|
1354
|
+
}
|
1355
|
+
.pure-menu.pure-menu-horizontal > ul {
|
1356
|
+
display: inline-block;
|
1357
|
+
*display: inline;
|
1358
|
+
zoom: 1;
|
1359
|
+
vertical-align: middle;
|
1360
|
+
}
|
1361
|
+
|
1362
|
+
.pure-menu li a { padding: 5px 20px; }
|
1363
|
+
|
1364
|
+
.pure-menu-can-have-children > .pure-menu-label:after {
|
1365
|
+
content: '\25B8';
|
1366
|
+
float: right;
|
1367
|
+
/* These specific fonts have the Unicode char we need. */
|
1368
|
+
font-family: 'Lucida Grande', 'Lucida Sans Unicode', 'DejaVu Sans', sans-serif;
|
1369
|
+
margin-right: -20px;
|
1370
|
+
margin-top: -1px;
|
1371
|
+
}
|
1372
|
+
|
1373
|
+
.pure-menu-can-have-children > .pure-menu-label {
|
1374
|
+
padding-right: 30px;
|
1375
|
+
}
|
1376
|
+
|
1377
|
+
.pure-menu-separator {
|
1378
|
+
background-color: #dfdfdf;
|
1379
|
+
display: block;
|
1380
|
+
height: 1px;
|
1381
|
+
font-size: 0;
|
1382
|
+
margin: 7px 2px;
|
1383
|
+
overflow: hidden;
|
1384
|
+
}
|
1385
|
+
|
1386
|
+
.pure-menu-hidden {
|
1387
|
+
display: none;
|
1388
|
+
}
|
1389
|
+
|
1390
|
+
/* FIXED MENU */
|
1391
|
+
.pure-menu-fixed {
|
1392
|
+
position: fixed;
|
1393
|
+
top: 0;
|
1394
|
+
left: 0;
|
1395
|
+
width: 100%;
|
1396
|
+
}
|
1397
|
+
|
1398
|
+
|
1399
|
+
/* HORIZONTAL MENU CODE */
|
1400
|
+
|
1401
|
+
/* Initial menus should be inline-block so that they are horizontal */
|
1402
|
+
.pure-menu-horizontal li {
|
1403
|
+
display: inline-block;
|
1404
|
+
*display: inline;
|
1405
|
+
zoom: 1;
|
1406
|
+
vertical-align: middle;
|
1407
|
+
}
|
1408
|
+
|
1409
|
+
/* Submenus should still be display: block; */
|
1410
|
+
.pure-menu-horizontal li li {
|
1411
|
+
display: block;
|
1412
|
+
}
|
1413
|
+
|
1414
|
+
/* Content after should be down arrow */
|
1415
|
+
.pure-menu-horizontal > .pure-menu-children > .pure-menu-can-have-children > .pure-menu-label:after {
|
1416
|
+
content: "\25BE";
|
1417
|
+
}
|
1418
|
+
/*Add extra padding to elements that have the arrow so that the hover looks nice */
|
1419
|
+
.pure-menu-horizontal > .pure-menu-children > .pure-menu-can-have-children > .pure-menu-label {
|
1420
|
+
padding-right: 30px;
|
1421
|
+
}
|
1422
|
+
|
1423
|
+
/* Adjusting separator for vertical menus */
|
1424
|
+
.pure-menu-horizontal li.pure-menu-separator {
|
1425
|
+
height: 50%;
|
1426
|
+
width: 1px;
|
1427
|
+
margin: 0 7px;
|
1428
|
+
}
|
1429
|
+
|
1430
|
+
/* Submenus should be horizontal separator again */
|
1431
|
+
.pure-menu-horizontal li li.pure-menu-separator {
|
1432
|
+
height: 1px;
|
1433
|
+
width: auto;
|
1434
|
+
margin: 7px 2px;
|
1435
|
+
}
|
1436
|
+
|
1437
|
+
|
1438
|
+
/*csslint adjoining-classes:false*/
|
1439
|
+
/*TODO: Remove this lint rule override after a refactor of this code.*/
|
1440
|
+
|
1441
|
+
/* MAIN MENU STYLING */
|
1442
|
+
|
1443
|
+
.pure-menu.pure-menu-open,
|
1444
|
+
.pure-menu.pure-menu-horizontal li .pure-menu-children {
|
1445
|
+
background: #fff; /* Old browsers */
|
1446
|
+
border: 1px solid #b7b7b7;
|
1447
|
+
}
|
1448
|
+
|
1449
|
+
/* remove borders for horizontal menus */
|
1450
|
+
.pure-menu.pure-menu-horizontal,
|
1451
|
+
.pure-menu.pure-menu-horizontal .pure-menu-heading {
|
1452
|
+
border: none;
|
1453
|
+
}
|
1454
|
+
|
1455
|
+
|
1456
|
+
/* LINK STYLES */
|
1457
|
+
|
1458
|
+
.pure-menu a {
|
1459
|
+
border: 1px solid transparent;
|
1460
|
+
border-left: none;
|
1461
|
+
border-right: none;
|
1462
|
+
|
1463
|
+
}
|
1464
|
+
|
1465
|
+
.pure-menu a,
|
1466
|
+
.pure-menu .pure-menu-can-have-children > li:after {
|
1467
|
+
color: #777;
|
1468
|
+
}
|
1469
|
+
|
1470
|
+
.pure-menu .pure-menu-can-have-children > li:hover:after {
|
1471
|
+
color: #fff;
|
1472
|
+
}
|
1473
|
+
|
1474
|
+
/* Focus style for a dropdown menu-item when the parent has been opened */
|
1475
|
+
.pure-menu .pure-menu-open {
|
1476
|
+
background: #dedede;
|
1477
|
+
}
|
1478
|
+
|
1479
|
+
|
1480
|
+
.pure-menu li a:hover,
|
1481
|
+
.pure-menu li a:focus {
|
1482
|
+
background: #eee;
|
1483
|
+
}
|
1484
|
+
|
1485
|
+
/* DISABLED STATES */
|
1486
|
+
.pure-menu li.pure-menu-disabled a:hover,
|
1487
|
+
.pure-menu li.pure-menu-disabled a:focus {
|
1488
|
+
background: #fff;
|
1489
|
+
color: #bfbfbf;
|
1490
|
+
}
|
1491
|
+
|
1492
|
+
.pure-menu .pure-menu-disabled > a {
|
1493
|
+
background-image: none;
|
1494
|
+
border-color: transparent;
|
1495
|
+
cursor: default;
|
1496
|
+
}
|
1497
|
+
|
1498
|
+
.pure-menu .pure-menu-disabled > a,
|
1499
|
+
.pure-menu .pure-menu-can-have-children.pure-menu-disabled > a:after {
|
1500
|
+
color: #bfbfbf;
|
1501
|
+
}
|
1502
|
+
|
1503
|
+
/* HEADINGS */
|
1504
|
+
.pure-menu .pure-menu-heading {
|
1505
|
+
color: #565d64;
|
1506
|
+
text-transform: uppercase;
|
1507
|
+
font-size: 90%;
|
1508
|
+
margin-top: 0.5em;
|
1509
|
+
border-bottom-width: 1px;
|
1510
|
+
border-bottom-style: solid;
|
1511
|
+
border-bottom-color: #dfdfdf;
|
1512
|
+
}
|
1513
|
+
|
1514
|
+
/* ACTIVE MENU ITEM */
|
1515
|
+
.pure-menu .pure-menu-selected a {
|
1516
|
+
color: #000;
|
1517
|
+
}
|
1518
|
+
|
1519
|
+
/* FIXED MENU */
|
1520
|
+
.pure-menu.pure-menu-open.pure-menu-fixed {
|
1521
|
+
border: none;
|
1522
|
+
border-bottom: 1px solid #b7b7b7;
|
1523
|
+
}
|
1524
|
+
|
1525
|
+
/*csslint box-model:false*/
|
1526
|
+
/*TODO: Remove this lint rule override after a refactor of this code.*/
|
1527
|
+
|
1528
|
+
|
1529
|
+
.pure-paginator {
|
1530
|
+
|
1531
|
+
/* `pure-g` Grid styles */
|
1532
|
+
letter-spacing: -0.31em; /* Webkit: collapse white-space between units */
|
1533
|
+
*letter-spacing: normal; /* reset IE < 8 */
|
1534
|
+
*word-spacing: -0.43em; /* IE < 8: collapse white-space between units */
|
1535
|
+
text-rendering: optimizespeed; /* Webkit: fixes text-rendering: optimizeLegibility */
|
1536
|
+
|
1537
|
+
/* `pure-paginator` Specific styles */
|
1538
|
+
list-style: none;
|
1539
|
+
margin: 0;
|
1540
|
+
padding: 0;
|
1541
|
+
}
|
1542
|
+
.opera-only :-o-prefocus,
|
1543
|
+
.pure-paginator {
|
1544
|
+
word-spacing: -0.43em;
|
1545
|
+
}
|
1546
|
+
|
1547
|
+
/* `pure-u` Grid styles */
|
1548
|
+
.pure-paginator li {
|
1549
|
+
display: inline-block;
|
1550
|
+
*display: inline; /* IE < 8: fake inline-block */
|
1551
|
+
zoom: 1;
|
1552
|
+
letter-spacing: normal;
|
1553
|
+
word-spacing: normal;
|
1554
|
+
vertical-align: top;
|
1555
|
+
text-rendering: auto;
|
1556
|
+
}
|
1557
|
+
|
1558
|
+
|
1559
|
+
.pure-paginator .pure-button {
|
1560
|
+
border-radius: 0;
|
1561
|
+
padding: 0.8em 1.4em;
|
1562
|
+
vertical-align: top;
|
1563
|
+
height: 1.1em;
|
1564
|
+
}
|
1565
|
+
.pure-paginator .pure-button:focus,
|
1566
|
+
.pure-paginator .pure-button:active {
|
1567
|
+
outline-style: none;
|
1568
|
+
}
|
1569
|
+
.pure-paginator .prev,
|
1570
|
+
.pure-paginator .next {
|
1571
|
+
color: #C0C1C3;
|
1572
|
+
text-shadow: 0 -1px 0 rgba(0,0,0, 0.45);
|
1573
|
+
}
|
1574
|
+
.pure-paginator .prev {
|
1575
|
+
border-radius: 2px 0 0 2px;
|
1576
|
+
}
|
1577
|
+
.pure-paginator .next {
|
1578
|
+
border-radius: 0 2px 2px 0;
|
1579
|
+
}
|
1580
|
+
|
1581
|
+
@media (max-width: 480px) {
|
1582
|
+
.pure-menu-horizontal {
|
1583
|
+
width: 100%;
|
1584
|
+
}
|
1585
|
+
|
1586
|
+
.pure-menu-children li {
|
1587
|
+
display: block;
|
1588
|
+
border-bottom: 1px solid black;
|
1589
|
+
}
|
1590
|
+
}
|
1591
|
+
|
1592
|
+
.pure-table {
|
1593
|
+
/* Remove spacing between table cells (from Normalize.css) */
|
1594
|
+
border-collapse: collapse;
|
1595
|
+
border-spacing: 0;
|
1596
|
+
empty-cells: show;
|
1597
|
+
border: 1px solid #cbcbcb;
|
1598
|
+
}
|
1599
|
+
|
1600
|
+
.pure-table caption {
|
1601
|
+
color: #000;
|
1602
|
+
font: italic 85%/1 arial, sans-serif;
|
1603
|
+
padding: 1em 0;
|
1604
|
+
text-align: center;
|
1605
|
+
}
|
1606
|
+
|
1607
|
+
.pure-table td,
|
1608
|
+
.pure-table th {
|
1609
|
+
border-left: 1px solid #cbcbcb;/* inner column border */
|
1610
|
+
border-width: 0 0 0 1px;
|
1611
|
+
font-size: inherit;
|
1612
|
+
margin: 0;
|
1613
|
+
overflow: visible; /*to make ths where the title is really long work*/
|
1614
|
+
padding: 0.5em 1em; /* cell padding */
|
1615
|
+
}
|
1616
|
+
.pure-table td:first-child,
|
1617
|
+
.pure-table th:first-child {
|
1618
|
+
border-left-width: 0;
|
1619
|
+
}
|
1620
|
+
|
1621
|
+
.pure-table thead {
|
1622
|
+
background: #e0e0e0;
|
1623
|
+
color: #000;
|
1624
|
+
text-align: left;
|
1625
|
+
vertical-align: bottom;
|
1626
|
+
}
|
1627
|
+
|
1628
|
+
/*
|
1629
|
+
striping:
|
1630
|
+
even - #fff (white)
|
1631
|
+
odd - #f2f2f2 (light gray)
|
1632
|
+
*/
|
1633
|
+
.pure-table td {
|
1634
|
+
background-color: transparent;
|
1635
|
+
}
|
1636
|
+
.pure-table-odd td {
|
1637
|
+
background-color: #f2f2f2;
|
1638
|
+
}
|
1639
|
+
|
1640
|
+
/* nth-child selector for modern browsers */
|
1641
|
+
.pure-table-striped tr:nth-child(2n-1) td {
|
1642
|
+
background-color: #f2f2f2;
|
1643
|
+
}
|
1644
|
+
|
1645
|
+
/* BORDERED TABLES */
|
1646
|
+
.pure-table-bordered td {
|
1647
|
+
border-bottom: 1px solid #cbcbcb;
|
1648
|
+
}
|
1649
|
+
.pure-table-bordered tbody > tr:last-child td,
|
1650
|
+
.pure-table-horizontal tbody > tr:last-child td {
|
1651
|
+
border-bottom-width: 0;
|
1652
|
+
}
|
1653
|
+
|
1654
|
+
|
1655
|
+
/* HORIZONTAL BORDERED TABLES */
|
1656
|
+
|
1657
|
+
.pure-table-horizontal td,
|
1658
|
+
.pure-table-horizontal th {
|
1659
|
+
border-width: 0 0 1px 0;
|
1660
|
+
border-bottom: 1px solid #cbcbcb;
|
1661
|
+
}
|
1662
|
+
.pure-table-horizontal tbody > tr:last-child td {
|
1663
|
+
border-bottom-width: 0;
|
1664
|
+
}
|