zurb-foundation 2.1.0 → 2.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,60 @@
1
+ /* Arfully Masterminded by ZURB */
2
+
3
+ /* --------------------------------------------------
4
+ :: Typography
5
+ -------------------------------------------------- */
6
+ h1, h2, h3, h4, h5, h6 { color: #181818; font-weight: bold; line-height: 1.25 }
7
+ h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
8
+ h1 { font-size: 46px; font-size: 4.6rem; margin-bottom: 12px;}
9
+ h2 { font-size: 35px; font-size: 3.5rem; margin-bottom: 9px; }
10
+ h3 { font-size: 28px; font-size: 2.8rem; margin-bottom: 9px; }
11
+ h4 { font-size: 21px; font-size: 2.1rem; margin-bottom: 3px; }
12
+ h5 { font-size: 18px; font-size: 1.8rem; font-weight: normal; margin-bottom: 3px; }
13
+ h6 { font-size: 15px; font-size: 1.5rem; font-weight: normal; }
14
+
15
+ .subheader { color: #777; font-weight: 300; margin-bottom: 24px; }
16
+
17
+ p { line-height: 17px; margin: 0 0 18px; }
18
+ p img { margin: 0; }
19
+ p.lead { font-size: 18px; font-size: 1.8rem; line-height: 24px; }
20
+
21
+ em, i { font-style: italic; line-height: inherit; }
22
+ strong, b { font-weight: bold; line-height: inherit; }
23
+ small { font-size: 60%; line-height: inherit; }
24
+
25
+ h1 small, h2 small, h3 small, h4 small, h5 small { color: #777; }
26
+
27
+ /* Blockquotes */
28
+ blockquote, blockquote p { line-height: 20px; color: #777; }
29
+ blockquote { margin: 0 0 18px; padding: 9px 20px 0 19px; border-left: 1px solid #ddd; }
30
+ blockquote cite { display: block; font-size: 12px; font-size: 1.2rem; color: #555; }
31
+ blockquote cite:before { content: "\2014 \0020"; }
32
+ blockquote cite a, blockquote cite a:visited { color: #555; }
33
+
34
+ hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 12px 0 18px; height: 0; }
35
+
36
+ abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222; border-bottom: 1px solid #ddd; cursor: help; }
37
+ abbr { text-transform: none; }
38
+
39
+ /**
40
+ * Print styles.
41
+ *
42
+ * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
43
+ * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
44
+ */
45
+ @media print {
46
+ * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
47
+ -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
48
+ p a, p a:visited { color: #444 !important; text-decoration: underline; }
49
+ p a[href]:after { content: " (" attr(href) ")"; }
50
+ abbr[title]:after { content: " (" attr(title) ")"; }
51
+ .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */
52
+ pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
53
+ thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
54
+ tr, img { page-break-inside: avoid; }
55
+ @page { margin: 0.5cm; }
56
+ p, h2, h3 { orphans: 3; widows: 3; }
57
+ h2, h3{ page-break-after: avoid; }
58
+ }
59
+
60
+
@@ -0,0 +1,234 @@
1
+ /* Artfully masterminded by ZURB */
2
+
3
+
4
+
5
+ /* --------------------------------------------------
6
+ Table of Contents
7
+ -----------------------------------------------------
8
+ :: Buttons
9
+ :: Alerts
10
+ :: Notices/Alerts
11
+ :: Tabs
12
+ :: Pagination
13
+ :: Lists
14
+ :: Panels
15
+ :: Nav
16
+ :: Microformats
17
+ */
18
+
19
+
20
+
21
+
22
+ /* --------------------------------------------------
23
+ Buttons
24
+ -------------------------------------------------- */
25
+
26
+ .button {
27
+ background: #00a6fc;
28
+ display: inline-block;
29
+ text-align: center;
30
+ padding: 9px 34px 11px;
31
+ color: #fff;
32
+ text-decoration: none;
33
+ font-weight: bold;
34
+ line-height: 1;
35
+ font-family: "Helvetica Neue", "Helvetica", Arial, Verdana, sans-serif;
36
+ position: relative;
37
+ cursor: pointer;
38
+ border: none;
39
+ }
40
+
41
+ /* Don't use native buttons on iOS */
42
+ input[type=submit].button { -webkit-appearance: none; }
43
+
44
+ .button.nice {
45
+ background: #00a6fc image-url("foundation/misc/button-gloss.png") repeat-x 0 -34px;
46
+ -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
47
+ -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
48
+ text-shadow: 0 -1px 1px rgba(0,0,0,0.28);
49
+ background: #00a6fc image-url("foundation/misc/button-gloss.png") repeat-x 0 -34px, -moz-linear-gradient(top, rgba(255,255,255,.4) 0%, transparent 100%);
50
+ background: #00a6fc image-url("foundation/misc/button-gloss.png") repeat-x 0 -34px, -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.4)), color-stop(100%,transparent));
51
+ border: 1px solid #0593dc;
52
+ -webkit-transition: background-color .15s ease-in-out;
53
+ -moz-transition: background-color .15s ease-in-out;
54
+ -o-transition: background-color .15s ease-in-out;
55
+ }
56
+
57
+ .button.radius {
58
+ -moz-border-radius: 3px;
59
+ -webkit-border-radius: 3px;
60
+ border-radius: 3px;
61
+ }
62
+ .button.round {
63
+ -moz-border-radius: 1000px;
64
+ -webkit-border-radius: 1000px;
65
+ border-radius: 1000px;
66
+ }
67
+
68
+ .button.full-width {
69
+ width: 100%;
70
+ padding-left: 0 !important;
71
+ padding-right: 0 !important;
72
+ text-align: center;
73
+ }
74
+
75
+ .button.left-align {
76
+ text-align: left;
77
+ text-indent: 12px;
78
+ }
79
+
80
+ /* Sizes ---------- */
81
+ .small.button { font-size: 11px; padding: 8px 20px 10px; width: auto; }
82
+ .medium.button { font-size: 13px; width: auto; }
83
+ .large.button { font-size: 18px; padding: 11px 48px 13px; width: auto; }
84
+
85
+ /* Nice Sizes ---------- */
86
+ .nice.small.button { background-position: 0 -36px; }
87
+ .nice.large.button { background-position: 0 -30px; }
88
+
89
+ /* Colors ---------- */
90
+ .blue.button { background-color: #00a6fc; }
91
+ .red.button { background-color: #e91c21; }
92
+ .white.button { background-color: #e9e9e9; color: #333; }
93
+ .black.button { background-color: #141414; }
94
+
95
+ /* Nice Colors ---------- */
96
+ .nice.blue.button { border: 1px solid #0593dc; }
97
+ .nice.red.button { border: 1px solid #b90b0b; }
98
+ .nice.white.button { border: 1px solid #cacaca; text-shadow: none !important; }
99
+ .nice.black.button { border: 1px solid #000; }
100
+
101
+ /* Hovers ---------- */
102
+ .button:hover, .button:focus { background-color: #0192dd; color: #fff; }
103
+ .blue.button:hover, .blue.button:focus { background-color: #0192dd; }
104
+ .red.button:hover, .red.button:focus { background-color: #d01217; }
105
+ .white.button:hover, .white.button:focus { background-color: #dadada; color: #333; }
106
+ .black.button:hover, .black.button:focus { background-color: #000; }
107
+
108
+ /* Disabled ---------- */
109
+ .button.disabled, .button[disabled] { opacity: 0.6; cursor: default; }
110
+
111
+
112
+
113
+ /* --------------------------------------------------
114
+ Alerts
115
+ -------------------------------------------------- */
116
+
117
+ div.alert-box { display: block; padding: 6px 7px; font-weight: bold; font-size: 13px; background: #eee; border: 1px solid rgba(0,0,0,0.1); margin-bottom: 12px; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; text-shadow: 0 1px rgba(255,255,255,0.9); position: relative; }
118
+ .alert-box.success { background-color: #7fae00; color: #fff; text-shadow: 0 -1px rgba(0,0,0,0.3); }
119
+ .alert-box.warning { background-color: #c08c00; color: #fff; text-shadow: 0 -1px rgba(0,0,0,0.3); }
120
+ .alert-box.error { background-color: #c00000; color: #fff; text-shadow: 0 -1px rgba(0,0,0,0.3); }
121
+
122
+ .alert-box a.close { color: #000; position: absolute; right: 4px; top: 0; font-size: 18px; opacity: 0.2; padding: 4px; }
123
+ .alert-box a.close:hover,.alert-box a.close:focus { opacity: 0.4; }
124
+
125
+
126
+ /* --------------------------------------------------
127
+ Tabs
128
+ -------------------------------------------------- */
129
+ dl.tabs { display: block; margin: 0 0 20px 0; padding: 0; height: 30px; border-bottom: solid 1px #ddd; }
130
+ dl.tabs dt { display: block; width: auto; height: 30px; padding: 0 9px 0 20px; line-height: 30px; float: left; color: #999; font-size: 11px; text-transform: uppercase; cursor: default; }
131
+ dl.tabs dt:first-child { padding: 0 9px 0 0; }
132
+ dl.tabs dd { display: block; width: auto; height: 30px; padding: 0; float: left; }
133
+ dl.tabs dd a { display: block; width: auto; height: 29px; padding: 0 9px; line-height: 30px; border: solid 1px #ddd; margin: 0 -1px 0 0; color: #555; background: #eee; }
134
+ dl.tabs dd a.active { background: #fff; border-width: 1px 1px 0 1px; height: 30px; }
135
+
136
+ .nice.tabs { border-bottom: solid 1px #eee; margin: 0 0 30px 0; height:43px; }
137
+ .nice.tabs dd a { padding: 7px 18px 9px; font-size: 15px; font-size: 1.5rem; color: #555555; background: none; border: none; }
138
+ .nice.tabs dd a.active { font-weight: bold; color: #333; background: #fff; border-left: 1px solid #eee; border-right: 1px solid #eee; border-top: 3px solid #00a6fc; margin: 0 10px; position: relative; top: -5px; }
139
+ .nice.tabs dd:first-child a.active { margin-left: 0; }
140
+
141
+ dl.tabs.vertical { height: auto; }
142
+ dl.tabs.vertical dt, dl.tabs.vertical dd, dl.nice.tabs.vertical dt, dl.nice.tabs.vertical dd { float: none; height: auto; }
143
+ dl.tabs.vertical dd a { display: block; width: auto; height: auto; padding: 15px 20px; line-height: 1; border: solid 0 #ccc; border-width: 1px 1px 0; margin: 0; color: #555; background: #eee; font-size: 15px; font-size: 1.5rem; }
144
+ dl.tabs.vertical dd a.active { height: auto; margin: 0; border-width: 1px 0 0; background: #fff; }
145
+
146
+ .nice.tabs.vertical { border-bottom: solid 1px #eee; height: auto; }
147
+ .nice.tabs.vertical dd a { padding: 15px 20px; border: none; border-left: 1px solid #eee; border-right: 1px solid #eee; border-top: 1px solid #eee; background: #fff; }
148
+ .nice.tabs.vertical dd a.active { border: none; background: #00a6fc; color: #fff; margin: 0; position: static; top: 0; height: auto; }
149
+ .nice.tabs.vertical dd:first-child a.active { margin: 0; }
150
+
151
+ ul.tabs-content { margin: 0; display: block; }
152
+ ul.tabs-content>li { display:none; }
153
+ ul.tabs-content>li.active { display: block; }
154
+
155
+ dl.contained, dl.nice.contained { margin-bottom: 0; }
156
+ dl.contained.tabs dd a { padding: 0 14px; }
157
+ dl.nice.contained.tabs dd a { padding: 7px 18px 9px; }
158
+
159
+ ul.contained.tabs-content { padding: 0; }
160
+ ul.contained.tabs-content>li { padding: 20px; border: solid 0 #ddd; border-width: 0 1px 1px 1px; }
161
+ ul.nice.contained.tabs-content>li { border-color: #eee; }
162
+
163
+ /* --------------------------------------------------
164
+ Pagination
165
+ -------------------------------------------------- */
166
+ ul.pagination { display: block; height: 24px; margin-left: -5px; }
167
+ ul.pagination li { float: left; display: block; height: 24px; color: #999; font-size: 15px; margin-left: 5px; }
168
+ ul.pagination li a { display: block; padding: 6px 7px 4px; color: #555; }
169
+ ul.pagination li.current a, ul.pagination li:hover a, ul.pagination li a:focus { border-bottom: solid 2px #00a6fc; color: #141414; }
170
+ ul.pagination li.unavailable a { cursor: default; color: #999; }
171
+ ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus { border-bottom: none; }
172
+
173
+ /* --------------------------------------------------
174
+ Lists
175
+ -------------------------------------------------- */
176
+ ul.nice, ol.nice { list-style: none; margin: 0; }
177
+ ul.nice li, ol.nice li { padding-left: 13px; position: relative }
178
+ ul.nice li span.bullet, ol.nice li span.number { position: absolute; left: 0; top: 0; color: #ccc; }
179
+
180
+ /* --------------------------------------------------
181
+ Panels
182
+ -------------------------------------------------- */
183
+ div.panel {
184
+ padding: 20px 20px 2px 20px;
185
+ background: #efefef;
186
+ background: -moz-linear-gradient(top, #FFFFFF 0%, #F4F4F4 100%);
187
+ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(100%,#F4F4F4));
188
+ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#F4F4F4',GradientType=0 );
189
+ box-shadow: 0 2px 5px rgba(0,0,0,0.15);
190
+ -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.15);
191
+ -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.25);
192
+ margin: 0 0 20px 0;
193
+ }
194
+
195
+ /* --------------------------------------------------
196
+ Nav Bar with Dropdowns
197
+ -------------------------------------------------- */
198
+
199
+ .nav-bar { height: 45px; background: #fff; margin-top: 20px; border: 1px solid #ddd; }
200
+ .nav-bar li { float: left; display: block; position: relative; padding: 0; margin: 0; border: none; }
201
+ .nav-bar li a { position: relative; font-size: 14px; padding: 14px 20px 13px 20px; display: block; text-decoration: none; font-size: 15px; font-size: 1.5rem; border-right: 1px solid #ddd; }
202
+ .nav-bar li.has-flyout a { padding-right: 36px; }
203
+ .nav-bar li.has-flyout a:after { content: ""; width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid #2a85e8; display: block; position: absolute; right: 18px; bottom: 20px; }
204
+ .nav-bar li:hover a { color: #141414; z-index: 2; }
205
+ .nav-bar li:hover a:after { border-top-color: #141414; }
206
+
207
+ .flyout { background: #fff; margin: 0; padding: 20px; border: 1px solid #ddd; position: absolute; top: 45px; left: -1px; width: 400px; z-index: 10; }
208
+ .flyout.small { width: 200px; }
209
+ .flyout.large { width: 600px; }
210
+ .flyout.right { left: auto; right: 0; }
211
+ .flyout p:last-child { margin-bottom: 0; }
212
+ .nav-bar li .flyout { display: none; }
213
+ .nav-bar li:hover .flyout { display: block; }
214
+
215
+
216
+
217
+ /* --------------------------------------------------
218
+ Microformats
219
+ -------------------------------------------------- */
220
+
221
+ /* hCard */
222
+ ul.vcard { display: inline-block; margin: 0 0 12px 0; border: 1px solid #ddd; padding: 10px; }
223
+ ul.vcard li { margin: 0; display: block; }
224
+ ul.vcard li.fn { font-weight: bold; font-size: 15px; font-size: 1.5rem; }
225
+
226
+ p.vevent span.summary { font-weight: bold; }
227
+ p.vevent abbr { cursor: default; text-decoration: none; font-weight: bold; border: none; padding: 0 1px; }
228
+
229
+
230
+
231
+
232
+
233
+
234
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zurb-foundation
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,12 +9,12 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-11-18 00:00:00.000000000 -08:00
12
+ date: 2011-12-07 00:00:00.000000000 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails
17
- requirement: &2154190160 !ruby/object:Gem::Requirement
17
+ requirement: &2156352100 !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ~>
@@ -22,10 +22,10 @@ dependencies:
22
22
  version: 3.1.0
23
23
  type: :runtime
24
24
  prerelease: false
25
- version_requirements: *2154190160
25
+ version_requirements: *2156352100
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: jquery-rails
28
- requirement: &2154189460 !ruby/object:Gem::Requirement
28
+ requirement: &2156351060 !ruby/object:Gem::Requirement
29
29
  none: false
30
30
  requirements:
31
31
  - - ~>
@@ -33,7 +33,7 @@ dependencies:
33
33
  version: '1.0'
34
34
  type: :runtime
35
35
  prerelease: false
36
- version_requirements: *2154189460
36
+ version_requirements: *2156351060
37
37
  description: An easy to use, powerful, and flexible framework for building prototypes
38
38
  and production code on any kind of device.
39
39
  email:
@@ -73,8 +73,22 @@ files:
73
73
  - vendor/assets/images/foundation/orbit/right-arrow.png
74
74
  - vendor/assets/images/foundation/orbit/rotator-black.png
75
75
  - vendor/assets/images/foundation/orbit/timer-black.png
76
- - vendor/assets/javascripts/foundation.js
77
- - vendor/assets/stylesheets/foundation.scss
76
+ - vendor/assets/javascripts/foundation/app.js
77
+ - vendor/assets/javascripts/foundation/forms.jquery.js
78
+ - vendor/assets/javascripts/foundation/index.js
79
+ - vendor/assets/javascripts/foundation/jquery.customforms.js
80
+ - vendor/assets/javascripts/foundation/jquery.orbit-1.3.0.js
81
+ - vendor/assets/javascripts/foundation/jquery.placeholder.min.js
82
+ - vendor/assets/javascripts/foundation/jquery.reveal.js
83
+ - vendor/assets/stylesheets/foundation/forms.css.scss
84
+ - vendor/assets/stylesheets/foundation/globals.css.scss
85
+ - vendor/assets/stylesheets/foundation/grid.css.scss
86
+ - vendor/assets/stylesheets/foundation/index.css
87
+ - vendor/assets/stylesheets/foundation/mobile.css.scss
88
+ - vendor/assets/stylesheets/foundation/orbit.css.scss
89
+ - vendor/assets/stylesheets/foundation/reveal.css.scss
90
+ - vendor/assets/stylesheets/foundation/typography.css.scss
91
+ - vendor/assets/stylesheets/foundation/ui.css.scss
78
92
  has_rdoc: true
79
93
  homepage: http://foundation.zurb.com
80
94
  licenses: []
@@ -90,7 +104,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
90
104
  version: '0'
91
105
  segments:
92
106
  - 0
93
- hash: -4054959945751573924
107
+ hash: -4157674815071257165
94
108
  required_rubygems_version: !ruby/object:Gem::Requirement
95
109
  none: false
96
110
  requirements:
@@ -99,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
113
  version: '0'
100
114
  segments:
101
115
  - 0
102
- hash: -4054959945751573924
116
+ hash: -4157674815071257165
103
117
  requirements: []
104
118
  rubyforge_project: foundation
105
119
  rubygems_version: 1.6.2
@@ -1,1084 +0,0 @@
1
- /* Artfully Masterminded by ZURB */
2
-
3
- /* --------------------------------------------------
4
- Table of Contents
5
- -----------------------------------------------------
6
- :: Reset & Standards
7
- :: Links
8
- :: Lists
9
- :: Tables
10
- :: Misc
11
- */
12
-
13
-
14
- /* --------------------------------------------------
15
- :: Global Reset & Standards
16
- -------------------------------------------------- */
17
-
18
- /*
19
- Eric Meyer's CSS Reset
20
- http://meyerweb.com/eric/tools/css/reset/
21
- v2.0 | 20110126
22
- License: none (public domain)
23
- */
24
-
25
- html, body, div, span, applet, object, iframe,
26
- h1, h2, h3, h4, h5, h6, p, blockquote, pre,
27
- a, abbr, acronym, address, big, cite, code,
28
- del, dfn, em, img, ins, kbd, q, s, samp,
29
- small, strike, strong, sub, sup, tt, var,
30
- b, u, i, center,
31
- dl, dt, dd, ol, ul, li,
32
- fieldset, form, label, legend,
33
- table, caption, tbody, tfoot, thead, tr, th, td,
34
- article, aside, canvas, details, embed,
35
- figure, figcaption, footer, header, hgroup,
36
- menu, nav, output, ruby, section, summary,
37
- time, mark, audio, video {
38
- margin: 0;
39
- padding: 0;
40
- border: 0;
41
- font: inherit;
42
- vertical-align: baseline;
43
- }
44
- html {
45
- font-size: 62.5%;
46
- }
47
- /* HTML5 display-role reset for older browsers */
48
- article, aside, details, figcaption, figure,
49
- footer, header, hgroup, menu, nav, section {
50
- display: block;
51
- }
52
- body {
53
- line-height: 1;
54
- }
55
- ol, ul {
56
- list-style: none;
57
- }
58
- blockquote, q {
59
- quotes: none;
60
- }
61
- blockquote:before, blockquote:after,
62
- q:before, q:after {
63
- content: '';
64
- content: none;
65
- }
66
- table {
67
- border-collapse: collapse;
68
- border-spacing: 0;
69
- }
70
-
71
-
72
-
73
- body { background: #fff; font-family: "Helvetica Neue", "HelveticaNeue", Helvetica, Arial, "Lucida Grande", sans-serif; font-size: 13px; line-height: 18px; color: #555; position: relative; -webkit-font-smoothing: antialiased; }
74
-
75
-
76
-
77
- /* --------------------------------------------------
78
- :: Links
79
- -------------------------------------------------- */
80
- a { color: #2a85e8; text-decoration: none; line-height: inherit; }
81
- a:hover { color: #11639d; }
82
- a:focus { color: #cc4714; }
83
- a:hover, a:active { outline: none; overflow: hidden; }
84
- p a, p a:visited { line-height: inherit; }
85
-
86
-
87
- /* --------------------------------------------------
88
- :: Lists
89
- -------------------------------------------------- */
90
- ul, ol { margin-bottom: 18px; }
91
- ul { list-style: none outside; }
92
- ol { list-style: decimal; }
93
- ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
94
- ul.square { list-style: square outside; }
95
- ul.circle { list-style: circle outside; }
96
- ul.disc { list-style: disc outside; }
97
- ul ul, ol ol { margin: 4px 0 5px 30px; }
98
- li { margin-bottom: 12px; }
99
- ul.large li { line-height: 21px; }
100
-
101
-
102
- /* --------------------------------------------------
103
- :: Tables
104
- -------------------------------------------------- */
105
- table { background: #fff; -moz-border-radius: 3px; -webkit-border-radius: 3px; width: 100%; margin: 0 0 18px; border: 1px solid #ddd; }
106
-
107
- table thead { background: #f5f5f5; }
108
- table thead tr th,
109
- table tbody tr td { font-size: 12px; line-height: 18px; text-align: left; }
110
- table thead tr th { padding: 8px 10px 9px; font-size: 14px; font-weight: bold; color: #222; }
111
- table thead tr th:first-child { border-left: none; }
112
- table thead tr th:last-child { border-right: none; }
113
-
114
- table thead tr { }
115
- table tbody { }
116
- table tbody tr { }
117
- table tbody tr.even,
118
- table tbody tr.alt { background: #f9f9f9; }
119
- table tbody tr:nth-child(even) { background: #f9f9f9; }
120
- table tbody tr td { color: #333; padding: 9px 10px; vertical-align: top; border: none; }
121
-
122
- /* --------------------------------------------------
123
- :: Misc
124
- ---------------------------------------------------*/
125
- .left { float: left; }
126
- .right { float: right; }
127
- .hide { display: none; }
128
- .highlight { background: #ff0; }
129
-
130
-
131
- /* Arfully Masterminded by ZURB */
132
-
133
- /* --------------------------------------------------
134
- :: Typography
135
- -------------------------------------------------- */
136
- h1, h2, h3, h4, h5, h6 { color: #181818; font-weight: bold; line-height: 1.25 }
137
- h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
138
- h1 { font-size: 46px; font-size: 4.6rem; margin-bottom: 12px;}
139
- h2 { font-size: 35px; font-size: 3.5rem; margin-bottom: 9px; }
140
- h3 { font-size: 28px; font-size: 2.8rem; margin-bottom: 9px; }
141
- h4 { font-size: 21px; font-size: 2.1rem; margin-bottom: 3px; }
142
- h5 { font-size: 18px; font-size: 1.8rem; font-weight: normal; margin-bottom: 3px; }
143
- h6 { font-size: 15px; font-size: 1.5rem; font-weight: normal; }
144
-
145
- .subheader { color: #777; font-weight: 300; margin-bottom: 24px; }
146
-
147
- p { line-height: 17px; margin: 0 0 18px; }
148
- p img { margin: 0; }
149
- p.lead { font-size: 18px; font-size: 1.8rem; line-height: 24px; }
150
-
151
- /* Mobile */
152
-
153
- @media handheld, only screen and (max-width: 767px) {
154
- body, p { font-size: 15px; font-size: 1.5rem; line-height: 1.4; }
155
- }
156
-
157
- em, i { font-style: italic; line-height: inherit; }
158
- strong, b { font-weight: bold; line-height: inherit; }
159
- small { font-size: 60%; line-height: inherit; }
160
-
161
- h1 small, h2 small, h3 small, h4 small, h5 small { color: #777; }
162
-
163
- /* Blockquotes */
164
- blockquote, blockquote p { line-height: 20px; color: #777; }
165
- blockquote { margin: 0 0 18px; padding: 9px 20px 0 19px; border-left: 1px solid #ddd; }
166
- blockquote cite { display: block; font-size: 12px; font-size: 1.2rem; color: #555; }
167
- blockquote cite:before { content: "\2014 \0020"; }
168
- blockquote cite a, blockquote cite a:visited { color: #555; }
169
-
170
- hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 12px 0 18px; height: 0; }
171
-
172
- abbr, acronym { text-transform: uppercase; font-size: 90%; color: #222; border-bottom: 1px solid #ddd; cursor: help; }
173
- abbr { text-transform: none; }
174
-
175
- /**
176
- * Print styles.
177
- *
178
- * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
179
- * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
180
- */
181
- @media print {
182
- * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
183
- -ms-filter: none !important; } /* Black prints faster: sanbeiji.com/archives/953 */
184
- p a, p a:visited { color: #444 !important; text-decoration: underline; }
185
- p a[href]:after { content: " (" attr(href) ")"; }
186
- abbr[title]:after { content: " (" attr(title) ")"; }
187
- .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } /* Don't show links for images, or javascript/internal links */
188
- pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
189
- thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */
190
- tr, img { page-break-inside: avoid; }
191
- @page { margin: 0.5cm; }
192
- p, h2, h3 { orphans: 3; widows: 3; }
193
- h2, h3{ page-break-after: avoid; }
194
- }
195
-
196
-
197
- /* Arfully Masterminded by ZURB */
198
-
199
- /* --------------------------------------------------
200
- :: Grid
201
-
202
- This is the mobile-friendly, responsive grid that
203
- lets Foundation work much of its magic.
204
-
205
- -------------------------------------------------- */
206
-
207
- .container { padding: 0px 20px; }
208
-
209
- .row { width: 100%; max-width: 980px; min-width: 727px; margin: 0 auto; }
210
- /* To fix the grid into a certain size, set max-width to width */
211
- .row .row { min-width: 0px; }
212
-
213
- .column, .columns { margin-left: 4.4%; float: left; min-height: 1px; position: relative; }
214
- .column:first-child, .columns:first-child { margin-left: 0px; }
215
-
216
- .row .one.columns { width: 4.3%; }
217
- .row .two.columns { width: 13%; }
218
- .row .three.columns { width: 21.68%; }
219
- .row .four.columns { width: 30.4%; }
220
- .row .five.columns { width: 39.1%; }
221
- .row .six.columns { width: 47.8%; }
222
- .row .seven.columns { width: 56.5%; }
223
- .row .eight.columns { width: 65.2%; }
224
- .row .nine.columns { width: 73.9%; }
225
- .row .ten.columns { width: 82.6%; }
226
- .row .eleven.columns { width: 91.3%; }
227
- .row .twelve.columns { width: 100%; }
228
-
229
- .row .offset-by-one { margin-left: 13.1%; }
230
- .row .offset-by-two { margin-left: 21.8%; }
231
- .row .offset-by-three { margin-left: 30.5%; }
232
- .row .offset-by-four { margin-left: 39.2%; }
233
- .row .offset-by-five { margin-left: 47.9%; }
234
- .row .offset-by-six { margin-left: 56.6%; }
235
- .row .offset-by-seven { margin-left: 65.3%; }
236
- .row .offset-by-eight { margin-left: 74.0%; }
237
- .row .offset-by-nine { margin-left: 82.7%; }
238
- .row .offset-by-ten { margin-left: 91.4%; }
239
- /*.row .offset-by-eleven { margin-left: 95.7%; }*/
240
-
241
- .row .centered { float: none; margin: 0 auto; }
242
-
243
- /*.row .one.centered { margin-left: 47.9%; }
244
- .row .two.centered { margin-left: 43.5%; }
245
- .row .three.centered { margin-left: 39.2%; }
246
- .row .four.centered { margin-left: 34.8%; }
247
- .row .five.centered { margin-left: 30.5%; }
248
- .row .six.centered { margin-left: 26.1%; }
249
- .row .seven.centered { margin-left: 21.8%; }
250
- .row .eight.centered { margin-left: 17.4%; }
251
- .row .nine.centered { margin-left: 13.1%; }
252
- .row .ten.centered { margin-left: 8.7%; }
253
- .row .eleven.centered { margin-left: 4.3%; }*/
254
-
255
- .row .offset-by-one:first-child { margin-left: 8.7%; }
256
- .row .offset-by-two:first-child { margin-left: 17.4%; }
257
- .row .offset-by-three:first-child { margin-left: 26.1%; }
258
- .row .offset-by-four:first-child { margin-left: 34.8%; }
259
- .row .offset-by-five:first-child { margin-left: 43.5%; }
260
- .row .offset-by-six:first-child { margin-left: 52.2%; }
261
- .row .offset-by-seven:first-child { margin-left: 60.9%; }
262
- .row .offset-by-eight:first-child { margin-left: 69.6%; }
263
- .row .offset-by-nine:first-child { margin-left: 78.3%; }
264
- .row .offset-by-ten:first-child { margin-left: 87%; }
265
- .row .offset-by-eleven:first-child { margin-left: 95.7%; }
266
-
267
- img, object, embed { max-width: 100%; height: auto; }
268
- img { -ms-interpolation-mode: bicubic; }
269
-
270
- /* Nicolas Gallagher's micro clearfix */
271
- .row:before, .row:after, .clearfix:before, .clearfix:after { content:""; display:table; }
272
- .row:after, .clearfix:after { clear: both; }
273
- .row, .clearfix { zoom: 1; }
274
-
275
-
276
-
277
-
278
- /* --------------------------------------------------
279
- :: Block grids
280
-
281
- These are 2-up, 3-up, 4-up and 5-up ULs, suited
282
- for repeating blocks of content. Add 'mobile' to
283
- them to switch them just like the layout grid
284
- (one item per line) on phones
285
- -------------------------------------------------- */
286
-
287
- .block-grid { display: block; overflow: hidden; }
288
- .block-grid>li { display: block; height: auto; float: left; }
289
-
290
- .block-grid.two-up { margin-left: -4% }
291
- .block-grid.two-up>li { margin-left: 4%; width: 46%; }
292
-
293
- .block-grid.three-up { margin-left: -2% }
294
- .block-grid.three-up>li { margin-left: 2%; width: 31.3%; }
295
-
296
- .block-grid.four-up { margin-left: -2% }
297
- .block-grid.four-up>li { margin-left: 2%; width: 23%; }
298
-
299
- .block-grid.five-up { margin-left: -1.5% }
300
- .block-grid.five-up>li { margin-left: 1.5%; width: 18.5%; }
301
-
302
-
303
-
304
- /* Artfully masterminded by ZURB */
305
-
306
-
307
-
308
- /* --------------------------------------------------
309
- Table of Contents
310
- -----------------------------------------------------
311
- :: Buttons
312
- :: Alerts
313
- :: Notices/Alerts
314
- :: Tabs
315
- :: Pagination
316
- :: Lists
317
- :: Panels
318
- */
319
-
320
-
321
-
322
-
323
- /* --------------------------------------------------
324
- Buttons
325
- -------------------------------------------------- */
326
-
327
- .button {
328
- background: #00a6fc;
329
- display: inline-block;
330
- text-align: center;
331
- padding: 9px 34px 11px;
332
- color: #fff;
333
- text-decoration: none;
334
- font-weight: bold;
335
- line-height: 1;
336
- font-family: "Helvetica Neue", "Helvetica", Arial, Verdana, sans-serif;
337
- position: relative;
338
- cursor: pointer;
339
- border: none;
340
- }
341
-
342
- /* Don't use native buttons on iOS */
343
- input[type=submit].button { -webkit-appearance: none; }
344
-
345
- .button.nice {
346
- background: #00a6fc image-url("foundation/misc/button-gloss.png") repeat-x 0 -34px;
347
- -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
348
- -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
349
- text-shadow: 0 -1px 1px rgba(0,0,0,0.28);
350
- background: #00a6fc image-url("foundation/misc/button-gloss.png") repeat-x 0 -34px, -moz-linear-gradient(top, rgba(255,255,255,.4) 0%, transparent 100%);
351
- background: #00a6fc image-url("foundation/misc/button-gloss.png") repeat-x 0 -34px, -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.4)), color-stop(100%,transparent));
352
- border: 1px solid #0593dc;
353
- -webkit-transition: background-color .15s ease-in-out;
354
- -moz-transition: background-color .15s ease-in-out;
355
- -o-transition: background-color .15s ease-in-out;
356
- }
357
-
358
- .button.radius {
359
- -moz-border-radius: 3px;
360
- -webkit-border-radius: 3px;
361
- border-radius: 3px;
362
- }
363
- .button.round {
364
- -moz-border-radius: 1000px;
365
- -webkit-border-radius: 1000px;
366
- border-radius: 1000px;
367
- }
368
-
369
- .button.full-width {
370
- width: 100%;
371
- padding-left: 0 !important;
372
- padding-right: 0 !important;
373
- text-align: center;
374
- }
375
-
376
- .button.left-align {
377
- text-align: left;
378
- text-indent: 12px;
379
- }
380
-
381
- /* Sizes ---------- */
382
- .small.button { font-size: 11px; padding: 8px 20px 10px; width: auto; }
383
- .medium.button { font-size: 13px; width: auto; }
384
- .large.button { font-size: 18px; padding: 11px 48px 13px; width: auto; }
385
-
386
- /* Nice Sizes ---------- */
387
- .nice.small.button { background-position: 0 -36px; }
388
- .nice.large.button { background-position: 0 -30px; }
389
-
390
- /* Colors ---------- */
391
- .blue.button { background-color: #00a6fc; }
392
- .red.button { background-color: #e91c21; }
393
- .white.button { background-color: #e9e9e9; color: #333; }
394
- .black.button { background-color: #141414; }
395
-
396
- /* Nice Colors ---------- */
397
- .nice.blue.button { border: 1px solid #0593dc; }
398
- .nice.red.button { border: 1px solid #b90b0b; }
399
- .nice.white.button { border: 1px solid #cacaca; text-shadow: none !important; }
400
- .nice.black.button { border: 1px solid #000; }
401
-
402
- /* Hovers ---------- */
403
- .button:hover, .button:focus { background-color: #0192dd; color: #fff; }
404
- .blue.button:hover, .blue.button:focus { background-color: #0192dd; }
405
- .red.button:hover, .red.button:focus { background-color: #d01217; }
406
- .white.button:hover, .white.button:focus { background-color: #dadada; color: #333; }
407
- .black.button:hover, .black.button:focus { background-color: #000; }
408
-
409
-
410
- /* Disabled ---------- */
411
- .button.disabled, .button[disabled] { opacity: 0.6; cursor: default; }
412
-
413
-
414
-
415
- /* --------------------------------------------------
416
- Alerts
417
- -------------------------------------------------- */
418
-
419
- div.alert-box { display: block; padding: 6px 7px; font-weight: bold; font-size: 13px; background: #eee; border: 1px solid rgba(0,0,0,0.1); margin-bottom: 12px; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; text-shadow: 0px 1px rgba(255,255,255,0.9); position: relative; }
420
- .alert-box.success { background-color: #7fae00; color: #fff; text-shadow: 0px -1px rgba(0,0,0,0.3); }
421
- .alert-box.warning { background-color: #c08c00; color: #fff; text-shadow: 0px -1px rgba(0,0,0,0.3); }
422
- .alert-box.error { background-color: #c00000; color: #fff; text-shadow: 0px -1px rgba(0,0,0,0.3); }
423
-
424
- .alert-box a.close { color: #000; position: absolute; right: 4px; top: 0px; font-size: 18px; opacity: 0.2; padding: 4px; }
425
- .alert-box a.close:hover,.alert-box a.close:focus { opacity: 0.4; }
426
-
427
-
428
-
429
- /* --------------------------------------------------
430
- Tabs
431
- -------------------------------------------------- */
432
- dl.tabs { display: block; margin: 0 0 20px 0; padding: 0; height: 30px; border-bottom: solid 1px #ddd; }
433
- dl.tabs dt { display: block; width: auto; height: 30px; padding: 0px 9px 0 20px; line-height: 30px; float: left; color: #999; font-size: 11px; text-transform: uppercase; cursor: default; }
434
- dl.tabs dt:first-child { padding: 0 9px 0 0px; }
435
- dl.tabs dd { display: block; width: auto; height: 30px; padding: 0; float: left; }
436
- dl.tabs dd a { display: block; width: auto; height: 29px; padding: 0px 9px; line-height: 30px; border: solid 1px #ddd; margin: 0 -1px 0 0; color: #555; background: #eee; }
437
- dl.tabs dd a.active { background: #fff; border-width: 1px 1px 0px 1px; height: 30px; }
438
-
439
- .nice.tabs { border-bottom: solid 1px #eee; margin: 0 0 30px 0; height:43px; }
440
- .nice.tabs dd a { padding: 7px 18px 9px; font-size: 15px; font-size: 1.5rem; color: #555555; background: none; border: none; }
441
- .nice.tabs dd a.active { font-weight: bold; color: #333; background: #fff; border-left: 1px solid #eee; border-right: 1px solid #eee; border-top: 3px solid #00a6fc; margin: 0 10px; position: relative; top: -5px; }
442
- .nice.tabs dd:first-child a.active { margin-left: 0; }
443
-
444
- dl.tabs.vertical { height: auto; }
445
- dl.tabs.vertical dt, dl.tabs.vertical dd, dl.nice.tabs.vertical dt, dl.nice.tabs.vertical dd { float: none; height: auto; }
446
- dl.tabs.vertical dd a { display: block; width: auto; height: auto; padding: 15px 20px; line-height: 1; border: solid 0px #ccc; border-width: 1px 1px 0px; margin: 0; color: #555; background: #eee; font-size: 15px; font-size: 1.5rem; }
447
- dl.tabs.vertical dd a.active { height: auto; margin: 0; border-width: 1px 0px 0px; background: #fff; }
448
-
449
- .nice.tabs.vertical { border-bottom: solid 1px #eee; height: auto; }
450
- .nice.tabs.vertical dd a { padding: 15px 20px; border: none; border-left: 1px solid #eee; border-right: 1px solid #eee; border-top: 1px solid #eee; background: #fff; }
451
- .nice.tabs.vertical dd a.active { border: none; background: #00a6fc; color: #fff; margin: 0; position: static; top: 0px; height: auto; }
452
- .nice.tabs.vertical dd:first-child a.active { margin: 0; }
453
-
454
- ul.tabs-content { margin: 0; display: block; }
455
- ul.tabs-content > li { display:none; }
456
- ul.tabs-content > li.active { display: block; }
457
-
458
- dl.contained, dl.nice.contained { margin-bottom: 0px; }
459
- dl.contained.tabs dd a { padding: 0px 14px; }
460
- dl.nice.contained.tabs dd a { padding: 7px 18px 9px; }
461
-
462
- ul.contained.tabs-content { padding: 0; }
463
- ul.contained.tabs-content li { padding: 20px; border: solid 0px #ddd; border-width: 0px 1px 1px 1px; }
464
- ul.nice.contained.tabs-content li { border-color: #eee; }
465
-
466
- /* --------------------------------------------------
467
- Pagination
468
- -------------------------------------------------- */
469
- ul.pagination { display: block; height: 24px; margin-left: -5px; }
470
- ul.pagination li { float: left; display: block; height: 24px; color: #999; font-size: 15px; margin-left: 5px; }
471
- ul.pagination li a { display: block; padding: 6px 7px 4px; color: #555; }
472
- ul.pagination li.current a, ul.pagination li:hover a, ul.pagination li a:focus { border-bottom: solid 2px #00a6fc; color: #141414; }
473
- ul.pagination li.unavailable a { cursor: default; color: #999; }
474
- ul.pagination li.unavailable:hover a, ul.pagination li.unavailable a:focus { border-bottom: none; }
475
-
476
-
477
- /* --------------------------------------------------
478
- Lists
479
- -------------------------------------------------- */
480
- ul.nice, ol.nice { list-style: none; margin: 0; }
481
- ul.nice li, ol.nice li { padding-left: 13px; position: relative }
482
- ul.nice li span.bullet, ol.nice li span.number { position: absolute; left: 0px; top: 0px; color: #ccc; }
483
-
484
-
485
- /* --------------------------------------------------
486
- Panels
487
- -------------------------------------------------- */
488
- div.panel {
489
- padding: 20px 20px 2px 20px;
490
- background: #efefef;
491
- background: -moz-linear-gradient(top, #FFFFFF 0%, #F4F4F4 100%);
492
- background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFFFFF), color-stop(100%,#F4F4F4));
493
- filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#F4F4F4',GradientType=0 );
494
- box-shadow: 0px 2px 5px rgba(0,0,0,0.15);
495
- -webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.15);
496
- -moz-box-shadow: 0px 2px 5px rgba(0,0,0,0.25);
497
- margin: 0 0 20px 0;
498
- }
499
-
500
-
501
-
502
-
503
-
504
- /* Artfully masterminded by ZURB
505
-
506
- Make sure to include the app.js if you are going to use inline label inputs
507
- */
508
-
509
-
510
- /* -----------------------------------------
511
- Standard Forms
512
- ----------------------------------------- */
513
-
514
- form { margin: 0 0 18px; }
515
- form label { display: block; font-size: 13px; line-height: 18px; cursor: pointer; margin-bottom: 9px; }
516
-
517
- input.input-text, textarea { border-right: 1px solid #bbb; border-bottom: 1px solid #bbb; }
518
- input.input-text, textarea, select { display: block; margin-bottom: 9px; }
519
- label + input.input-text, label + textarea, label + select, label + div.dropdown, select + div.dropdown { margin-top: -9px; }
520
-
521
- /* Text input and textarea font and padding */
522
- input.input-text, textarea { font-size: 13px; padding: 4px 3px 2px; outline: none !important; background: #fff; }
523
- input.input-text.oversize, textarea.oversize { font-size: 18px !important; padding: 4px 5px !important; }
524
- input.input-text:focus, textarea:focus { background: #f9f9f9; }
525
-
526
- /* Inlined Label Style */
527
- input.placeholder, textarea.placeholder { color: #888; }
528
-
529
- /* Text input and textarea sizes */
530
- input.input-text, textarea { width: 254px; }
531
- input.small, textarea.small { width: 134px; }
532
- input.medium, textarea.medium { width: 254px; }
533
- input.large, textarea.large { width: 434px; }
534
-
535
- /* Fieldsets */
536
- form fieldset { padding: 9px 9px 2px 9px; border: solid 1px #ddd; margin: 18px 0; }
537
-
538
- /* Inlined Radio & Checkbox */
539
- div.form-field input[type=radio], div.form-field input[type=checkbox] { display: inline; width:auto; margin-bottom:0; }
540
-
541
- /* Errors */
542
- div.form-field.error input, input.input-text.red { border-color: red; background-color: rgba(255,0,0,0.15); }
543
- div.form-field.error label, label.red { color: red; }
544
- div.form-field.error small, small.error { margin-top: -6px; display: block; margin-bottom: 9px; font-size: 11px; color: red; width: 260px; }
545
-
546
- .small + small.error { width: 140px; }
547
- .medium + small.error { width: 260px; }
548
- .large + small.error { width: 440px; }
549
-
550
- /* -----------------------------------------
551
- Nicer Forms
552
- ----------------------------------------- */
553
- form.nice div.form-field input, form.nice input.input-text, form.nice textarea { border: solid 1px #bbb; border-radius: 2px; -webkit-border-radius: 2px; -moz-border-radius: 2px; }
554
- form.nice div.form-field input, form.nice input.input-text, form.nice textarea { font-size: 13px; padding: 6px 3px 4px; outline: none !important; background: image-url("foundation/misc/input-bg.png") #fff; }
555
- form.nice div.form-field input:focus, form.nice input.input-text:focus, form.nice textarea:focus { background-color: #f9f9f9; }
556
-
557
- form.nice fieldset { border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; }
558
-
559
- form.nice div.form-field input[type=radio], form.nice div.form-field input[type=checkbox] { display: inline; width:auto; margin-bottom:0; }
560
-
561
- form.nice div.form-field.error small, form.nice small.error { padding: 6px 4px; border: solid 0px red; border-width: 0px 1px 1px 1px; margin-top: -10px; background: red; color: #fff; font-size: 12px; font-weight: bold; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; -webkit-border-bottom-left-radius: 2px; -webkit-border-bottom-right-radius: 2px; -moz-border-radius-bottomleft: 2px; -moz-border-radius-bottomright: 2px; }
562
-
563
- form.nice div.form-field.error .small + small, form.nice .small + small.error { width: 132px; }
564
- form.nice div.form-field.error .medium + small, form.nice .medium + small.error { width: 252px; }
565
- form.nice div.form-field.error .large + small, form.nice .large + small.error { width: 432px; }
566
-
567
- /* -----------------------------------------
568
- Custom Forms
569
- ----------------------------------------- */
570
-
571
- form.custom span.custom { display: inline-block; width: 14px; height: 14px; position: relative; top: 2px; border: solid 1px #ccc; background: image-url("foundation/misc/custom-form-sprites.png") 0 0 no-repeat; }
572
- form.custom span.custom.radio { border-radius: 7px; -webkit-border-radius: 7px; -moz-border-radius: 7px; }
573
- form.custom span.custom.radio.checked { background-position: 0px -14px; }
574
- form.custom span.custom.checkbox.checked { background-position: 0px -28px; }
575
-
576
- form.custom div.custom.dropdown { position: relative; display: inline-block; width: auto; height: 28px; margin-bottom: 9px; }
577
- form.custom div.custom.dropdown a.current { display: block; width: auto; line-height: 26px; padding: 0 38px 0 6px; border: solid 1px #ddd; color: #141414; }
578
- form.custom div.custom.dropdown a.selector { position: absolute; width: 26px; height: 26px; display: block; background: image-url("foundation/misc/custom-form-sprites.png") -14px 0 no-repeat; right: 0px; top: 0px; border: solid 1px #ddd; }
579
- form.custom div.custom.dropdown:hover a.selector,
580
- form.custom div.custom.dropdown.open a.selector { background-position: -14px -26px; }
581
-
582
- form.custom div.custom.dropdown ul { position: absolute; width: auto; display: none; margin: 0; left: 0px; top: 27px; margin: 0; padding: 0; background: rgba(255,255,255,0.9); border: solid 1px #ddd; z-index: 10; }
583
- form.custom div.custom.dropdown ul li { cursor: pointer; padding: 3px 38px 3px 6px; margin: 0; }
584
- form.custom div.custom.dropdown ul li.selected { background: image-url("foundation/misc/custom-form-sprites.png") right -52px no-repeat; }
585
- form.custom div.custom.dropdown ul li:hover { background-color: #2a85e8; color: #fff; }
586
- form.custom div.custom.dropdown ul li.selected:hover { background: image-url("foundation/misc/custom-form-sprites.png") #2a85e8 right -78px no-repeat; }
587
- form.custom div.custom.dropdown ul.show { display: block; }
588
-
589
- form.custom div.custom.dropdown.open ul { display: block; }
590
-
591
-
592
-
593
- /* CSS for jQuery Orbit Plugin 1.2.3
594
- * www.ZURB.com/playground
595
- * Copyright 2010, ZURB
596
- * Free to use under the MIT license.
597
- * http://www.opensource.org/licenses/mit-license.php
598
-
599
-
600
-
601
- /* PUT IN YOUR SLIDER ID AND SIZE TO MAKE LOAD BEAUTIFULLY
602
- ================================================== */
603
- #caseStudies {
604
- width: 1000px;
605
- height: 210px;
606
- background: #fff image-url("foundation/orbit/loading.gif") no-repeat center center;
607
- overflow: hidden; }
608
- #caseStudies>img,
609
- #caseStudies>div,
610
- #caseStudies>a { display: none; }
611
-
612
-
613
-
614
-
615
- /* CONTAINER
616
- ================================================== */
617
-
618
- div.orbit-wrapper {
619
- width: 1px;
620
- height: 1px;
621
- position: relative; }
622
-
623
- div.orbit {
624
- width: 1px;
625
- height: 1px;
626
- position: relative;
627
- overflow: hidden }
628
-
629
- div.orbit.with-bullets {
630
- margin-bottom: 40px;
631
- }
632
-
633
- div.orbit>img {
634
- position: absolute;
635
- top: 0;
636
- left: 0;
637
- /* display: none; */ }
638
-
639
- div.orbit>a {
640
- border: none;
641
- position: absolute;
642
- top: 0;
643
- left: 0;
644
- line-height: 0;
645
- display: none; }
646
-
647
- .orbit>div {
648
- position: absolute;
649
- top: 0;
650
- left: 0;
651
- width: 100%;
652
- height: 100%; }
653
-
654
- /* Note: If your slider only uses content or anchors, you're going to want to put the width and height declarations on the ".orbit>div" and "div.orbit>a" tags in addition to just the .orbit-wrapper */
655
-
656
-
657
- /* TIMER
658
- ================================================== */
659
-
660
- div.timer {
661
- width: 40px;
662
- height: 40px;
663
- overflow: hidden;
664
- position: absolute;
665
- top: 10px;
666
- right: 10px;
667
- opacity: .6;
668
- cursor: pointer;
669
- z-index: 1001; }
670
-
671
- span.rotator {
672
- display: block;
673
- width: 40px;
674
- height: 40px;
675
- position: absolute;
676
- top: 0;
677
- left: -20px;
678
- background: image-url("foundation/orbit/rotator-black.png") no-repeat;
679
- z-index: 3; }
680
-
681
- span.mask {
682
- display: block;
683
- width: 20px;
684
- height: 40px;
685
- position: absolute;
686
- top: 0;
687
- right: 0;
688
- z-index: 2;
689
- overflow: hidden; }
690
-
691
- span.rotator.move {
692
- left: 0 }
693
-
694
- span.mask.move {
695
- width: 40px;
696
- left: 0;
697
- background: image-url("foundation/orbit/timer-black.png") repeat 0 0; }
698
-
699
- span.pause {
700
- display: block;
701
- width: 40px;
702
- height: 40px;
703
- position: absolute;
704
- top: 0;
705
- left: 0;
706
- background: image-url("foundation/orbit/pause-black.png") no-repeat;
707
- z-index: 4;
708
- opacity: 0; }
709
-
710
- span.pause.active {
711
- background: image-url("foundation/orbit/pause-black.png") no-repeat 0 -40px }
712
-
713
- div.timer:hover span.pause,
714
- span.pause.active {
715
- opacity: 1 }
716
-
717
-
718
- /* CAPTIONS
719
- ================================================== */
720
-
721
- .orbit-caption {
722
- display: none;
723
- font-family: "HelveticaNeue", "Helvetica-Neue", Helvetica, Arial, sans-serif; }
724
-
725
- .orbit-wrapper .orbit-caption {
726
- background: #000;
727
- background: rgba(0,0,0,.6);
728
- z-index: 1000;
729
- color: #fff;
730
- text-align: center;
731
- padding: 7px 0;
732
- font-size: 13px;
733
- position: absolute;
734
- right: 0;
735
- bottom: 0;
736
- width: 100%; }
737
-
738
-
739
- /* DIRECTIONAL NAV
740
- ================================================== */
741
-
742
- div.slider-nav {
743
- display: block }
744
-
745
- div.slider-nav span {
746
- width: 78px;
747
- height: 100px;
748
- text-indent: -9999px;
749
- position: absolute;
750
- z-index: 1000;
751
- top: 50%;
752
- margin-top: -50px;
753
- cursor: pointer; }
754
-
755
- div.slider-nav span.right {
756
- background: image-url("foundation/orbit/right-arrow.png");
757
- right: 0; }
758
-
759
- div.slider-nav span.left {
760
- background: image-url("foundation/orbit/left-arrow.png");
761
- left: 0; }
762
-
763
- /* BULLET NAV
764
- ================================================== */
765
-
766
- .orbit-bullets {
767
- position: absolute;
768
- z-index: 1000;
769
- list-style: none;
770
- bottom: -40px;
771
- left: 50%;
772
- margin-left: -50px;
773
- padding: 0; }
774
-
775
- .orbit-bullets li {
776
- float: left;
777
- margin-left: 5px;
778
- cursor: pointer;
779
- color: #999;
780
- text-indent: -9999px;
781
- background: image-url("foundation/orbit/bullets.jpg") no-repeat 4px 0;
782
- width: 13px;
783
- height: 12px;
784
- overflow: hidden; }
785
-
786
- .orbit-bullets li.active {
787
- color: #222;
788
- background-position: -8px 0; }
789
-
790
- .orbit-bullets li.has-thumb {
791
- background: none;
792
- width: 100px;
793
- height: 75px; }
794
-
795
- .orbit-bullets li.active.has-thumb {
796
- background-position: 0 0;
797
- border-top: 2px solid #000; }
798
-
799
- /* FLUID LAYOUT
800
- ================================================== */
801
- .orbit .fluid-placeholder {
802
- visibility: hidden;
803
- position: static;
804
- display: block;
805
- width: 100%;
806
- }
807
-
808
- .orbit, .orbit-wrapper { width: 100% !important; }
809
-
810
- .orbit-bullets {
811
- position: absolute;
812
- z-index: 1000;
813
- list-style: none;
814
- bottom: -50px;
815
- left: 50%;
816
- margin-left: -50px;
817
- padding: 0; }
818
-
819
- .orbit-bullets li {
820
- float: left;
821
- margin-left: 5px;
822
- cursor: pointer;
823
- color: #999;
824
- text-indent: -9999px;
825
- background: image-url("foundation/orbit/bullets.jpg") no-repeat 4px 0;
826
- width: 13px;
827
- height: 12px;
828
- overflow: hidden; }
829
-
830
- .orbit-bullets li.has-thumb {
831
- background: none;
832
- width: 100px;
833
- height: 75px; }
834
-
835
- .orbit-bullets li.active {
836
- color: #222;
837
- background-position: -8px 0; }
838
-
839
- .orbit-bullets li.active.has-thumb {
840
- background-position: 0 0;
841
- border-top: 2px solid #000; }
842
-
843
- /* --------------------------------------------------
844
- Reveal Modals
845
- -------------------------------------------------- */
846
-
847
- .reveal-modal-bg {
848
- position: fixed;
849
- height: 100%;
850
- width: 100%;
851
- background: #000;
852
- z-index: 2000;
853
- display: none;
854
- top: 0;
855
- left: 0;
856
- }
857
-
858
- .reveal-modal {
859
- visibility: hidden;
860
- top: 100px;
861
- left: 50%;
862
- margin-left: -300px;
863
- width: 520px;
864
- background: #eee image-url("foundation/misc/modal-gloss.png") no-repeat -200px -80px;
865
- position: absolute;
866
- z-index: 2001;
867
- padding: 30px 40px 34px;
868
- -moz-border-radius: 5px;
869
- -webkit-border-radius: 5px;
870
- border-radius: 5px;
871
- -moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
872
- -webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
873
- box-shadow: 0 0 10px rgba(0,0,0,.4);
874
- }
875
-
876
- .reveal-modal.small { width: 200px; margin-left: -140px;}
877
- .reveal-modal.medium { width: 400px; margin-left: -240px;}
878
- .reveal-modal.large { width: 600px; margin-left: -340px;}
879
- .reveal-modal.xlarge { width: 800px; margin-left: -440px;}
880
-
881
- .reveal-modal .close-reveal-modal {
882
- font-size: 22px;
883
- line-height: .5;
884
- position: absolute;
885
- top: 8px;
886
- right: 11px;
887
- color: #aaa;
888
- text-shadow: 0 -1px 1px rbga(0,0,0,.6);
889
- font-weight: bold;
890
- cursor: pointer;
891
- }
892
-
893
-
894
- /* Mobile */
895
-
896
- @media handheld, only screen and (device-width: 768px), (device-width: 800px) {
897
- .reveal-modal-bg { position: absolute; }
898
-
899
- .reveal-modal,
900
- .reveal-modal.small,
901
- .reveal-modal.medium,
902
- .reveal-modal.large,
903
- .reveal-modal.xlarge { width: 60%; top: 30%; left: 15%; margin-left: 0px; padding: 5%; height: auto; }
904
- }
905
-
906
- @media handheld, only screen and (max-width: 767px) {
907
- .reveal-modal-bg { position: absolute; }
908
-
909
- .reveal-modal,
910
- .reveal-modal.small,
911
- .reveal-modal.medium,
912
- .reveal-modal.large,
913
- .reveal-modal.xlarge { width: 80%; top: 15%; left: 5%; margin-left: 0px; padding: 5%; height: auto; }
914
- }
915
-
916
-
917
- /*
918
-
919
- NOTES
920
-
921
- Close button entity is ×
922
-
923
- Example markup
924
-
925
- <div id="myModal" class="reveal-modal">
926
- <h2>Awesome. I have it.</h2>
927
- <p class="lead">Your couch. I it's mine.</p>
928
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. In ultrices aliquet placerat. Duis pulvinar orci et nisi euismod vitae tempus lorem consectetur. Duis at magna quis turpis mattis venenatis eget id diam. </p>
929
- <a class="close-reveal-modal">&#215;</a>
930
- </div>
931
-
932
- */
933
-
934
-
935
- /* --------------------------------------------------
936
- :: Grid
937
- -------------------------------------------------- */
938
-
939
- /* Tablet screens */
940
- @media only screen and (device-width: 768px), (device-width: 800px) {
941
- /* Currently unused */
942
- }
943
-
944
-
945
- /* Mobile */
946
- @media only screen and (max-width: 767px) {
947
- body { -webkit-text-size-adjust: none; }
948
-
949
- .row, body, .container { width: 100%; min-width: 0; margin-left: 0px; margin-right: 0px; padding-left: 0px; padding-right: 0px; }
950
- .row .row .column, .row .row .columns { padding: 0; }
951
- .column, .columns { width: auto !important; float: none; margin-left: 0px; margin-right: 0px; padding-left: 20px; padding-right: 20px; }
952
- .column:last-child, .columns:last-child { margin-right: 0px; }
953
- .offset-by-one, .offset-by-two, .offset-by-three, .offset-by-four, .offset-by-five, .offset-by-six, .offset-by-seven, .offset-by-eight, .offset-by-nine, .offset-by-ten, .offset-by-eleven, .centered { margin-left: 0% !important; }
954
-
955
-
956
- /* Mobile 4-column Grid */
957
- .row .phone-one.column:first-child, .row .phone-two.column:first-child, .row .phone-three.column:first-child, .row .phone-four.column:first-child, .row .phone-one.columns:first-child, .row .phone-two.columns:first-child, .row .phone-three.columns:first-child, .row .phone-four.columns:first-child { margin-left: 0px; }
958
-
959
- .row .phone-one.column, .row .phone-two.column, .row .phone-three.column, .row .phone-four.column,
960
- .row .phone-one.columns, .row .phone-two.columns, .row .phone-three.columns, .row .phone-four.columns { margin-left: 4.4%; float: left; min-height: 1px; position: relative; padding: 0; }
961
-
962
- .row .phone-one.columns { width: 21.68% !important; }
963
- .row .phone-two.columns { width: 47.8% !important; }
964
- .row .phone-three.columns { width: 73.9% !important; }
965
- .row .phone-four.columns { width: 100% !important; }
966
-
967
-
968
- }
969
-
970
-
971
- /* --------------------------------------------------
972
- :: Block Grids
973
- -------------------------------------------------- */
974
-
975
- @media only screen and (max-width: 767px) {
976
- .block-grid.mobile { margin-left: 0%; }
977
- .block-grid.mobile li { float: none; width: 100%; margin-left: 0%; }
978
- }
979
-
980
-
981
-
982
- /* --------------------------------------------------
983
- :: Mobile Visibility Affordances
984
- ---------------------------------------------------*/
985
-
986
-
987
- .show-on-phones { display: none !important; }
988
- .show-on-tablets { display: none !important; }
989
- .show-on-desktops { display: block; }
990
-
991
- .hide-on-phones { display: block !important; }
992
- .hide-on-tablets { display: block !important; }
993
- .hide-on-desktops { display: none; }
994
-
995
-
996
- @media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px) {
997
- .hide-on-phones { display: block !important; }
998
- .hide-on-tablets { display: none !important; }
999
- .hide-on-desktops { display: block !important; }
1000
-
1001
- .show-on-phones { display: none !important; }
1002
- .show-on-tablets { display: block !important; }
1003
- .show-on-desktops { display: none !important; }
1004
- }
1005
-
1006
-
1007
- @media only screen and (max-width: 767px) {
1008
- .hide-on-phones { display: none !important; }
1009
- .hide-on-tablets { display: block !important; }
1010
- .hide-on-desktops { display: block !important; }
1011
-
1012
- .show-on-phones { display: block !important; }
1013
- .show-on-tablets { display: none !important; }
1014
- .show-on-desktops { display: none !important; }
1015
- }
1016
-
1017
- /* only screen and (device-width: 1280px), only screen and (max-device-width: 1280px), /*
1018
- /* Keeping this in as a reminder to address support for other tablet devices like the Xoom in the future */
1019
-
1020
- /* Specific overrides for elements that require something other than display: block */
1021
-
1022
- table.show-on-desktops { display: table !important; }
1023
- table.hide-on-phones { display: table !important; }
1024
- table.hide-on-tablets { display: table !important; }
1025
-
1026
- @media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px) {
1027
- table.hide-on-phones { display: block !important; }
1028
- table.hide-on-desktops { display: block !important; }
1029
- table.show-on-tablets { display: block !important; }
1030
- }
1031
-
1032
- @media only screen and (max-width: 767px) {
1033
- table.hide-on-tablets { display: block !important; }
1034
- table.hide-on-desktops { display: block !important; }
1035
- table.show-on-phones { display: block !important; }
1036
- }
1037
-
1038
-
1039
- /* --------------------------------------------------
1040
- :: Forms
1041
- ---------------------------------------------------*/
1042
-
1043
-
1044
- @media only screen and (max-width: 767px) {
1045
- div.form-field input, div.form-field input.small, div.form-field input.medium, div.form-field input.large, div.form-field input.oversize, input.input-text, input.input-text.oversize, textarea,
1046
- form.nice div.form-field input, form.nice div.form-field input.oversize, form.nice input.input-text, form.nice input.input-text.oversize, form.nice textarea { display: block; width: 96%; padding: 6px 2% 4px; font-size: 18px; }
1047
- form.nice div.form-field input, form.nice div.form-field input.oversize, form.nice input.input-text, form.nice input.input-text.oversize, form.nice textarea { -webkit-border-radius: 2px; -moz-border-radius: 2px; }
1048
- form.nice div.form-field.error small, form.nice small.error { padding: 6px 2%; display: block; }
1049
- form.nice div.form-field.error .small + small, form.nice .small + .error { width: auto; }
1050
- form.nice div.form-field.error .medium + small, form.nice .medium + .error { width: auto; }
1051
- form.nice div.form-field.error .large + small, form.nice .large + .error { width: auto; }
1052
- }
1053
-
1054
-
1055
- /* --------------------------------------------------
1056
- :: UI
1057
- ---------------------------------------------------*/
1058
-
1059
- /* Buttons */
1060
- @media only screen and (max-width: 767px) {
1061
- .button { display: block; }
1062
- button.button { width: 100%; padding-left: 0px; padding-right: 0px; }
1063
- }
1064
-
1065
- /* Tabs */
1066
-
1067
- @media only screen and (max-width: 767px) {
1068
- dl.tabs.mobile, dl.nice.tabs.mobile { width: auto; margin: 20px -20px 40px; height: auto; }
1069
- dl.tabs.mobile dt, dl.tabs.mobile dd, dl.nice.tabs.mobile dt, dl.nice.tabs.mobile dd { float: none; height: auto; }
1070
-
1071
- dl.tabs.mobile dd a { display: block; width: auto; height: auto; padding: 18px 20px; line-height: 1; border: solid 0px #ccc; border-width: 1px 0px 0px; margin: 0; color: #555; background: #eee; font-size: 15px; font-size: 1.5rem; }
1072
- dl.tabs.mobile dd a.active { height: auto; margin: 0; border-width: 1px 0px 0px; }
1073
-
1074
- .nice.tabs.mobile { border-bottom: solid 1px #ccc; height: auto; }
1075
- .nice.tabs.mobile dd a { padding: 18px 20px; border: none; border-left: none; border-right: none; border-top: 1px solid #ccc; background: #fff; }
1076
- .nice.tabs.mobile dd a.active { border: none; background: #00a6fc; color: #fff; margin: 0; position: static; top: 0px; height: auto; }
1077
- .nice.tabs.mobile dd:first-child a.active { margin: 0; }
1078
-
1079
- dl.contained.mobile, dl.nice.contained.mobile { margin-bottom: 0px; }
1080
- dl.contained.tabs.mobile dd a { padding: 18px 20px; }
1081
- dl.nice.contained.tabs.mobile dd a { padding: 18px 20px; }
1082
- }
1083
-
1084
-