compass-foundation 0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +9 -0
- data/.gitmodules +3 -0
- data/Gemfile +4 -0
- data/LICENSE.mkdn +11 -0
- data/README.mkdn +43 -0
- data/Rakefile +1 -0
- data/compass-foundation.gemspec +26 -0
- data/lib/compass-foundation/rails/engine.rb +7 -0
- data/lib/compass-foundation/rails.rb +7 -0
- data/lib/compass-foundation/version.rb +5 -0
- data/lib/compass-foundation.rb +14 -0
- data/stylesheets/compass-foundation/_compass_foundation.scss +13 -0
- data/stylesheets/compass-foundation/_forms.css.scss +249 -0
- data/stylesheets/compass-foundation/_globals.css.scss +176 -0
- data/stylesheets/compass-foundation/_grid.css.scss +188 -0
- data/stylesheets/compass-foundation/_ie.css.scss +4 -0
- data/stylesheets/compass-foundation/_mobile.css.scss +220 -0
- data/stylesheets/compass-foundation/_orbit.css.scss +227 -0
- data/stylesheets/compass-foundation/_reveal.css.scss +107 -0
- data/stylesheets/compass-foundation/_typography.css.scss +169 -0
- data/stylesheets/compass-foundation/_ui.css.scss +338 -0
- data/vendor/assets/images/misc/button-gloss.png +0 -0
- data/vendor/assets/images/misc/button-overlay.png +0 -0
- data/vendor/assets/images/misc/custom-form-sprites.png +0 -0
- data/vendor/assets/images/misc/input-bg.png +0 -0
- data/vendor/assets/images/misc/modal-gloss.png +0 -0
- data/vendor/assets/images/misc/table-sorter.png +0 -0
- data/vendor/assets/images/orbit/bullets.jpg +0 -0
- data/vendor/assets/images/orbit/left-arrow.png +0 -0
- data/vendor/assets/images/orbit/loading.gif +0 -0
- data/vendor/assets/images/orbit/mask-black.png +0 -0
- data/vendor/assets/images/orbit/pause-black.png +0 -0
- data/vendor/assets/images/orbit/right-arrow.png +0 -0
- data/vendor/assets/images/orbit/rotator-black.png +0 -0
- data/vendor/assets/images/orbit/timer-black.png +0 -0
- data/vendor/assets/javascripts/app.js +48 -0
- data/vendor/assets/javascripts/forms.jquery.js +58 -0
- data/vendor/assets/javascripts/jquery.customforms.js +168 -0
- data/vendor/assets/javascripts/jquery.orbit.js +597 -0
- data/vendor/assets/javascripts/jquery.placeholder.min.js +2 -0
- data/vendor/assets/javascripts/jquery.reveal.js +126 -0
- data/vendor/assets/stylesheets/compass-foundation/_compass_foundation.scss +13 -0
- data/vendor/assets/stylesheets/compass-foundation/_forms.scss +249 -0
- data/vendor/assets/stylesheets/compass-foundation/_globals.scss +176 -0
- data/vendor/assets/stylesheets/compass-foundation/_grid.scss +188 -0
- data/vendor/assets/stylesheets/compass-foundation/_ie.scss +4 -0
- data/vendor/assets/stylesheets/compass-foundation/_mobile.scss +220 -0
- data/vendor/assets/stylesheets/compass-foundation/_orbit.scss +227 -0
- data/vendor/assets/stylesheets/compass-foundation/_reveal.scss +107 -0
- data/vendor/assets/stylesheets/compass-foundation/_typography.scss +169 -0
- data/vendor/assets/stylesheets/compass-foundation/_ui.scss +338 -0
- data/vendor/assets/stylesheets/compass-foundation/compass_foundation.scss +13 -0
- data/vendor/assets/stylesheets/compass-foundation/manifest.rb +38 -0
- metadata +121 -0
@@ -0,0 +1,188 @@
|
|
1
|
+
/* Arfully Masterminded by ZURB */
|
2
|
+
|
3
|
+
/* --------------------------------------------------
|
4
|
+
:: Grid
|
5
|
+
|
6
|
+
This is the mobile-friendly, responsive grid that
|
7
|
+
lets Foundation work much of its magic.
|
8
|
+
|
9
|
+
-------------------------------------------------- */
|
10
|
+
|
11
|
+
.container {
|
12
|
+
padding: 0px 20px; }
|
13
|
+
|
14
|
+
.row {
|
15
|
+
width: 100%;
|
16
|
+
max-width: 980px;
|
17
|
+
min-width: 727px;
|
18
|
+
margin: 0 auto;
|
19
|
+
.row {
|
20
|
+
min-width: 0px; } }
|
21
|
+
|
22
|
+
/* To fix the grid into a certain size, set max-width to width */
|
23
|
+
|
24
|
+
.column, .columns {
|
25
|
+
margin-left: 4.4%;
|
26
|
+
float: left;
|
27
|
+
min-height: 1px;
|
28
|
+
position: relative; }
|
29
|
+
|
30
|
+
.column:first-child, .columns:first-child {
|
31
|
+
margin-left: 0px; }
|
32
|
+
|
33
|
+
.row {
|
34
|
+
.one.columns {
|
35
|
+
width: 4.3%; }
|
36
|
+
.two.columns {
|
37
|
+
width: 13%; }
|
38
|
+
.three.columns {
|
39
|
+
width: 21.68%; }
|
40
|
+
.four.columns {
|
41
|
+
width: 30.4%; }
|
42
|
+
.five.columns {
|
43
|
+
width: 39.1%; }
|
44
|
+
.six.columns {
|
45
|
+
width: 47.8%; }
|
46
|
+
.seven.columns {
|
47
|
+
width: 56.5%; }
|
48
|
+
.eight.columns {
|
49
|
+
width: 65.2%; }
|
50
|
+
.nine.columns {
|
51
|
+
width: 73.9%; }
|
52
|
+
.ten.columns {
|
53
|
+
width: 82.6%; }
|
54
|
+
.eleven.columns {
|
55
|
+
width: 91.3%; }
|
56
|
+
.twelve.columns {
|
57
|
+
width: 100%; }
|
58
|
+
.offset-by-one {
|
59
|
+
margin-left: 13.1%; }
|
60
|
+
.offset-by-two {
|
61
|
+
margin-left: 21.8%; }
|
62
|
+
.offset-by-three {
|
63
|
+
margin-left: 30.5%; }
|
64
|
+
.offset-by-four {
|
65
|
+
margin-left: 39.2%; }
|
66
|
+
.offset-by-five {
|
67
|
+
margin-left: 47.9%; }
|
68
|
+
.offset-by-six {
|
69
|
+
margin-left: 56.6%; }
|
70
|
+
.offset-by-seven {
|
71
|
+
margin-left: 65.3%; }
|
72
|
+
.offset-by-eight {
|
73
|
+
margin-left: 74.0%; }
|
74
|
+
.offset-by-nine {
|
75
|
+
margin-left: 82.7%; }
|
76
|
+
.offset-by-ten {
|
77
|
+
margin-left: 91.4%; }
|
78
|
+
.one.centered {
|
79
|
+
margin-left: 47.9%; }
|
80
|
+
.two.centered {
|
81
|
+
margin-left: 43.5%; }
|
82
|
+
.three.centered {
|
83
|
+
margin-left: 39.2%; }
|
84
|
+
.four.centered {
|
85
|
+
margin-left: 34.8%; }
|
86
|
+
.five.centered {
|
87
|
+
margin-left: 30.5%; }
|
88
|
+
.six.centered {
|
89
|
+
margin-left: 26.1%; }
|
90
|
+
.seven.centered {
|
91
|
+
margin-left: 21.8%; }
|
92
|
+
.eight.centered {
|
93
|
+
margin-left: 17.4%; }
|
94
|
+
.nine.centered {
|
95
|
+
margin-left: 13.1%; }
|
96
|
+
.ten.centered {
|
97
|
+
margin-left: 8.7%; }
|
98
|
+
.eleven.centered {
|
99
|
+
margin-left: 4.3%; }
|
100
|
+
.offset-by-one:first-child {
|
101
|
+
margin-left: 8.7%; }
|
102
|
+
.offset-by-two:first-child {
|
103
|
+
margin-left: 17.4%; }
|
104
|
+
.offset-by-three:first-child {
|
105
|
+
margin-left: 26.1%; }
|
106
|
+
.offset-by-four:first-child {
|
107
|
+
margin-left: 34.8%; }
|
108
|
+
.offset-by-five:first-child {
|
109
|
+
margin-left: 43.5%; }
|
110
|
+
.offset-by-six:first-child {
|
111
|
+
margin-left: 52.2%; }
|
112
|
+
.offset-by-seven:first-child {
|
113
|
+
margin-left: 60.9%; }
|
114
|
+
.offset-by-eight:first-child {
|
115
|
+
margin-left: 69.6%; }
|
116
|
+
.offset-by-nine:first-child {
|
117
|
+
margin-left: 78.3%; }
|
118
|
+
.offset-by-ten:first-child {
|
119
|
+
margin-left: 87%; }
|
120
|
+
.offset-by-eleven:first-child {
|
121
|
+
margin-left: 95.7%; } }
|
122
|
+
|
123
|
+
/*.row .offset-by-eleven { margin-left: 95.7%; }*/
|
124
|
+
|
125
|
+
img, object, embed {
|
126
|
+
max-width: 100%;
|
127
|
+
height: auto; }
|
128
|
+
|
129
|
+
img {
|
130
|
+
-ms-interpolation-mode: bicubic; }
|
131
|
+
|
132
|
+
/* Nicolas Gallagher's micro clearfix */
|
133
|
+
|
134
|
+
.row {
|
135
|
+
&:before, &:after {
|
136
|
+
content: "";
|
137
|
+
display: table; } }
|
138
|
+
|
139
|
+
.clearfix {
|
140
|
+
&:before, &:after {
|
141
|
+
content: "";
|
142
|
+
display: table; } }
|
143
|
+
|
144
|
+
.row:after, .clearfix:after {
|
145
|
+
clear: both; }
|
146
|
+
|
147
|
+
.row, .clearfix {
|
148
|
+
zoom: 1; }
|
149
|
+
|
150
|
+
/* --------------------------------------------------
|
151
|
+
:: Block grids
|
152
|
+
|
153
|
+
These are 2-up, 3-up, 4-up and 5-up ULs, suited
|
154
|
+
for repeating blocks of content. Add 'mobile' to
|
155
|
+
them to switch them just like the layout grid
|
156
|
+
(one item per line) on phones
|
157
|
+
-------------------------------------------------- */
|
158
|
+
|
159
|
+
.block-grid {
|
160
|
+
display: block;
|
161
|
+
overflow: hidden; }
|
162
|
+
|
163
|
+
.block-grid>li {
|
164
|
+
display: block;
|
165
|
+
height: auto;
|
166
|
+
float: left; }
|
167
|
+
|
168
|
+
.block-grid {
|
169
|
+
&.two-up {
|
170
|
+
margin-left: -4%; }
|
171
|
+
&.two-up>li {
|
172
|
+
margin-left: 4%;
|
173
|
+
width: 46%; }
|
174
|
+
&.three-up {
|
175
|
+
margin-left: -2%; }
|
176
|
+
&.three-up>li {
|
177
|
+
margin-left: 2%;
|
178
|
+
width: 31.3%; }
|
179
|
+
&.four-up {
|
180
|
+
margin-left: -2%; }
|
181
|
+
&.four-up>li {
|
182
|
+
margin-left: 2%;
|
183
|
+
width: 23%; }
|
184
|
+
&.five-up {
|
185
|
+
margin-left: -1.5%; }
|
186
|
+
&.five-up>li {
|
187
|
+
margin-left: 1.5%;
|
188
|
+
width: 18.5%; } }
|
@@ -0,0 +1,220 @@
|
|
1
|
+
/* --------------------------------------------------
|
2
|
+
:: Grid
|
3
|
+
-------------------------------------------------- */
|
4
|
+
|
5
|
+
/* Tablet screens */
|
6
|
+
@media only screen and (device-width: 768px), (device-width: 800px) {
|
7
|
+
/* Currently unused */ }
|
8
|
+
|
9
|
+
/* Mobile */
|
10
|
+
@media only screen and (max-width: 767px) {
|
11
|
+
body {
|
12
|
+
-webkit-text-size-adjust: none; }
|
13
|
+
.row, body, .container {
|
14
|
+
width: 100%;
|
15
|
+
min-width: 0;
|
16
|
+
margin-left: 0px;
|
17
|
+
margin-right: 0px;
|
18
|
+
padding-left: 0px;
|
19
|
+
padding-right: 0px; }
|
20
|
+
.row .row {
|
21
|
+
.column, .columns {
|
22
|
+
padding: 0; } }
|
23
|
+
.column, .columns {
|
24
|
+
width: auto !important;
|
25
|
+
float: none;
|
26
|
+
margin-left: 0px;
|
27
|
+
margin-right: 0px;
|
28
|
+
padding-left: 20px;
|
29
|
+
padding-right: 20px; }
|
30
|
+
.column:last-child, .columns:last-child {
|
31
|
+
margin-right: 0px; }
|
32
|
+
.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 {
|
33
|
+
margin-left: 0% !important; } }
|
34
|
+
|
35
|
+
/* --------------------------------------------------
|
36
|
+
:: Block Grids
|
37
|
+
-------------------------------------------------- */
|
38
|
+
|
39
|
+
@media only screen and (max-width: 767px) {
|
40
|
+
.block-grid.mobile {
|
41
|
+
margin-left: 0%;
|
42
|
+
li {
|
43
|
+
float: none;
|
44
|
+
width: 100%;
|
45
|
+
margin-left: 0%; } } }
|
46
|
+
|
47
|
+
/* --------------------------------------------------
|
48
|
+
:: Mobile Visibility Affordances
|
49
|
+
---------------------------------------------------*/
|
50
|
+
|
51
|
+
.show-on-phones, .show-on-tablets {
|
52
|
+
display: none !important; }
|
53
|
+
|
54
|
+
.show-on-desktops {
|
55
|
+
display: block; }
|
56
|
+
|
57
|
+
.hide-on-phones, .hide-on-tablets {
|
58
|
+
display: block !important; }
|
59
|
+
|
60
|
+
.hide-on-desktops {
|
61
|
+
display: none; }
|
62
|
+
|
63
|
+
@media only screen and (max-device-width: 800px), only screen and (device-width: 800px) {
|
64
|
+
.hide-on-phones {
|
65
|
+
display: block !important; }
|
66
|
+
.hide-on-tablets {
|
67
|
+
display: none !important; }
|
68
|
+
.hide-on-desktops {
|
69
|
+
display: block !important; }
|
70
|
+
.show-on-phones {
|
71
|
+
display: none !important; }
|
72
|
+
.show-on-tablets {
|
73
|
+
display: block !important; }
|
74
|
+
.show-on-desktops {
|
75
|
+
display: none !important; } }
|
76
|
+
|
77
|
+
@media only screen and (max-width: 767px) {
|
78
|
+
.hide-on-phones {
|
79
|
+
display: none !important; }
|
80
|
+
.hide-on-tablets, .hide-on-desktops, .show-on-phones {
|
81
|
+
display: block !important; }
|
82
|
+
.show-on-tablets, .show-on-desktops {
|
83
|
+
display: none !important; } }
|
84
|
+
|
85
|
+
/* only screen and (device-width: 1280px), only screen and (max-device-width: 1280px), /*
|
86
|
+
|
87
|
+
|
88
|
+
/* --------------------------------------------------
|
89
|
+
:: Forms
|
90
|
+
---------------------------------------------------*/
|
91
|
+
|
92
|
+
@media only screen and (max-width: 767px) {
|
93
|
+
div.form-field input {
|
94
|
+
display: block;
|
95
|
+
width: 96%;
|
96
|
+
padding: 6px 2% 4px;
|
97
|
+
font-size: 18px;
|
98
|
+
&.small, &.medium, &.large, &.oversize {
|
99
|
+
display: block;
|
100
|
+
width: 96%;
|
101
|
+
padding: 6px 2% 4px;
|
102
|
+
font-size: 18px; } }
|
103
|
+
input.input-text {
|
104
|
+
display: block;
|
105
|
+
width: 96%;
|
106
|
+
padding: 6px 2% 4px;
|
107
|
+
font-size: 18px;
|
108
|
+
&.oversize {
|
109
|
+
display: block;
|
110
|
+
width: 96%;
|
111
|
+
padding: 6px 2% 4px;
|
112
|
+
font-size: 18px; } }
|
113
|
+
textarea {
|
114
|
+
display: block;
|
115
|
+
width: 96%;
|
116
|
+
padding: 6px 2% 4px;
|
117
|
+
font-size: 18px; }
|
118
|
+
form.nice {
|
119
|
+
div.form-field input, input.input-text {
|
120
|
+
display: block;
|
121
|
+
width: 96%;
|
122
|
+
padding: 6px 2% 4px;
|
123
|
+
font-size: 18px;
|
124
|
+
&.oversize {
|
125
|
+
display: block;
|
126
|
+
width: 96%;
|
127
|
+
padding: 6px 2% 4px;
|
128
|
+
font-size: 18px; } }
|
129
|
+
textarea {
|
130
|
+
display: block;
|
131
|
+
width: 96%;
|
132
|
+
padding: 6px 2% 4px;
|
133
|
+
font-size: 18px; }
|
134
|
+
div.form-field input, input.input-text {
|
135
|
+
-webkit-border-radius: 2px;
|
136
|
+
-moz-border-radius: 2px;
|
137
|
+
&.oversize {
|
138
|
+
-webkit-border-radius: 2px;
|
139
|
+
-moz-border-radius: 2px; } }
|
140
|
+
textarea {
|
141
|
+
-webkit-border-radius: 2px;
|
142
|
+
-moz-border-radius: 2px; }
|
143
|
+
div.form-field.error small, small.error {
|
144
|
+
padding: 6px 2%;
|
145
|
+
display: block; }
|
146
|
+
div.form-field.error .small + small, .small + .error, div.form-field.error .medium + small, .medium + .error, div.form-field.error .large + small, .large + .error {
|
147
|
+
width: auto; } } }
|
148
|
+
|
149
|
+
/* --------------------------------------------------
|
150
|
+
:: UI
|
151
|
+
---------------------------------------------------*/
|
152
|
+
|
153
|
+
/* Buttons */
|
154
|
+
@media only screen and (max-width: 767px) {
|
155
|
+
.button {
|
156
|
+
display: block; }
|
157
|
+
button.button {
|
158
|
+
width: 100%;
|
159
|
+
padding-left: 0px;
|
160
|
+
padding-right: 0px; } }
|
161
|
+
|
162
|
+
/* Tabs */
|
163
|
+
|
164
|
+
@media only screen and (max-width: 767px) {
|
165
|
+
dl {
|
166
|
+
&.tabs.mobile, &.nice.tabs.mobile {
|
167
|
+
width: auto;
|
168
|
+
margin: 20px -20px 40px;
|
169
|
+
height: auto; }
|
170
|
+
&.tabs.mobile {
|
171
|
+
dt, dd {
|
172
|
+
float: none;
|
173
|
+
height: auto; } }
|
174
|
+
&.nice.tabs.mobile {
|
175
|
+
dt, dd {
|
176
|
+
float: none;
|
177
|
+
height: auto; } }
|
178
|
+
&.tabs.mobile dd a {
|
179
|
+
display: block;
|
180
|
+
width: auto;
|
181
|
+
height: auto;
|
182
|
+
padding: 18px 20px;
|
183
|
+
line-height: 1;
|
184
|
+
border: solid 0px #ccc;
|
185
|
+
border-width: 1px 0px 0px;
|
186
|
+
margin: 0;
|
187
|
+
color: #555;
|
188
|
+
background: #eee;
|
189
|
+
font-size: 15px;
|
190
|
+
font-size: 1.5rem;
|
191
|
+
&.active {
|
192
|
+
height: auto;
|
193
|
+
margin: 0;
|
194
|
+
border-width: 1px 0px 0px; } } }
|
195
|
+
.nice.tabs.mobile {
|
196
|
+
border-bottom: solid 1px #ccc;
|
197
|
+
height: auto;
|
198
|
+
dd {
|
199
|
+
a {
|
200
|
+
padding: 18px 20px;
|
201
|
+
border: none;
|
202
|
+
border-left: none;
|
203
|
+
border-right: none;
|
204
|
+
border-top: 1px solid #ccc;
|
205
|
+
background: #fff;
|
206
|
+
&.active {
|
207
|
+
border: none;
|
208
|
+
background: #00a6fc;
|
209
|
+
color: #fff;
|
210
|
+
margin: 0;
|
211
|
+
position: static;
|
212
|
+
top: 0px;
|
213
|
+
height: auto; } }
|
214
|
+
&:first-child a.active {
|
215
|
+
margin: 0; } } }
|
216
|
+
dl {
|
217
|
+
&.contained.mobile, &.nice.contained.mobile {
|
218
|
+
margin-bottom: 0px; }
|
219
|
+
&.contained.tabs.mobile dd a, &.nice.contained.tabs.mobile dd a {
|
220
|
+
padding: 18px 20px; } } }
|
@@ -0,0 +1,227 @@
|
|
1
|
+
/* CSS for jQuery Orbit Plugin 1.2.3
|
2
|
+
* www.ZURB.com/playground
|
3
|
+
* Copyright 2010, ZURB
|
4
|
+
* Free to use under the MIT license.
|
5
|
+
* http://www.opensource.org/licenses/mit-license.php
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
/* PUT IN YOUR SLIDER ID AND SIZE TO MAKE LOAD BEAUTIFULLY
|
10
|
+
================================================== */
|
11
|
+
|
12
|
+
#caseStudies {
|
13
|
+
width: 1000px;
|
14
|
+
height: 210px;
|
15
|
+
background: white url('../images/orbit/loading.gif') no-repeat center center;
|
16
|
+
overflow: hidden; }
|
17
|
+
|
18
|
+
#caseStudies>img, #caseStudies>div, #caseStudies>a {
|
19
|
+
display: none; }
|
20
|
+
|
21
|
+
/* CONTAINER
|
22
|
+
================================================== */
|
23
|
+
|
24
|
+
div {
|
25
|
+
&.orbit-wrapper {
|
26
|
+
width: 1px;
|
27
|
+
height: 1px;
|
28
|
+
position: relative; }
|
29
|
+
&.orbit {
|
30
|
+
width: 1px;
|
31
|
+
height: 1px;
|
32
|
+
position: relative;
|
33
|
+
overflow: hidden;
|
34
|
+
&.with-bullets {
|
35
|
+
margin-bottom: 40px; } }
|
36
|
+
&.orbit>img {
|
37
|
+
position: absolute;
|
38
|
+
top: 0;
|
39
|
+
left: 0;
|
40
|
+
/* display: none; */ }
|
41
|
+
&.orbit>a {
|
42
|
+
border: none;
|
43
|
+
position: absolute;
|
44
|
+
top: 0;
|
45
|
+
left: 0;
|
46
|
+
line-height: 0;
|
47
|
+
display: none; } }
|
48
|
+
|
49
|
+
.orbit>div {
|
50
|
+
position: absolute;
|
51
|
+
top: 0;
|
52
|
+
left: 0;
|
53
|
+
width: 100%;
|
54
|
+
height: 100%; }
|
55
|
+
|
56
|
+
/* 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 */
|
57
|
+
|
58
|
+
/* TIMER
|
59
|
+
================================================== */
|
60
|
+
|
61
|
+
div.timer {
|
62
|
+
width: 40px;
|
63
|
+
height: 40px;
|
64
|
+
overflow: hidden;
|
65
|
+
position: absolute;
|
66
|
+
top: 10px;
|
67
|
+
right: 10px;
|
68
|
+
opacity: .6;
|
69
|
+
cursor: pointer;
|
70
|
+
z-index: 1001; }
|
71
|
+
|
72
|
+
span {
|
73
|
+
&.rotator {
|
74
|
+
display: block;
|
75
|
+
width: 40px;
|
76
|
+
height: 40px;
|
77
|
+
position: absolute;
|
78
|
+
top: 0;
|
79
|
+
left: -20px;
|
80
|
+
background: url(../images/orbit/rotator-black.png) no-repeat;
|
81
|
+
z-index: 3; }
|
82
|
+
&.mask {
|
83
|
+
display: block;
|
84
|
+
width: 20px;
|
85
|
+
height: 40px;
|
86
|
+
position: absolute;
|
87
|
+
top: 0;
|
88
|
+
right: 0;
|
89
|
+
z-index: 2;
|
90
|
+
overflow: hidden; }
|
91
|
+
&.rotator.move {
|
92
|
+
left: 0; }
|
93
|
+
&.mask.move {
|
94
|
+
width: 40px;
|
95
|
+
left: 0;
|
96
|
+
background: url(../images/orbit/timer-black.png) repeat 0 0; }
|
97
|
+
&.pause {
|
98
|
+
display: block;
|
99
|
+
width: 40px;
|
100
|
+
height: 40px;
|
101
|
+
position: absolute;
|
102
|
+
top: 0;
|
103
|
+
left: 0;
|
104
|
+
background: url(../images/orbit/pause-black.png) no-repeat;
|
105
|
+
z-index: 4;
|
106
|
+
opacity: 0;
|
107
|
+
&.active {
|
108
|
+
background: url(../images/orbit/pause-black.png) no-repeat 0 -40px; } } }
|
109
|
+
|
110
|
+
div.timer:hover span.pause, span.pause.active {
|
111
|
+
opacity: 1; }
|
112
|
+
|
113
|
+
/* CAPTIONS
|
114
|
+
================================================== */
|
115
|
+
|
116
|
+
.orbit-caption {
|
117
|
+
display: none;
|
118
|
+
font-family: "HelveticaNeue", "Helvetica-Neue", Helvetica, Arial, sans-serif; }
|
119
|
+
|
120
|
+
.orbit-wrapper .orbit-caption {
|
121
|
+
background: #000;
|
122
|
+
background: rgba(0, 0, 0, 0.6);
|
123
|
+
z-index: 1000;
|
124
|
+
color: #fff;
|
125
|
+
text-align: center;
|
126
|
+
padding: 7px 0;
|
127
|
+
font-size: 13px;
|
128
|
+
position: absolute;
|
129
|
+
right: 0;
|
130
|
+
bottom: 0;
|
131
|
+
width: 100%; }
|
132
|
+
|
133
|
+
/* DIRECTIONAL NAV
|
134
|
+
================================================== */
|
135
|
+
|
136
|
+
div.slider-nav {
|
137
|
+
display: block;
|
138
|
+
span {
|
139
|
+
width: 78px;
|
140
|
+
height: 100px;
|
141
|
+
text-indent: -9999px;
|
142
|
+
position: absolute;
|
143
|
+
z-index: 1000;
|
144
|
+
top: 50%;
|
145
|
+
margin-top: -50px;
|
146
|
+
cursor: pointer;
|
147
|
+
&.right {
|
148
|
+
background: url(../images/orbit/right-arrow.png);
|
149
|
+
right: 0; }
|
150
|
+
&.left {
|
151
|
+
background: url(../images/orbit/left-arrow.png);
|
152
|
+
left: 0; } } }
|
153
|
+
|
154
|
+
/* BULLET NAV
|
155
|
+
================================================== */
|
156
|
+
|
157
|
+
.orbit-bullets {
|
158
|
+
position: absolute;
|
159
|
+
z-index: 1000;
|
160
|
+
list-style: none;
|
161
|
+
bottom: -40px;
|
162
|
+
left: 50%;
|
163
|
+
margin-left: -50px;
|
164
|
+
padding: 0;
|
165
|
+
li {
|
166
|
+
float: left;
|
167
|
+
margin-left: 5px;
|
168
|
+
cursor: pointer;
|
169
|
+
color: #999;
|
170
|
+
text-indent: -9999px;
|
171
|
+
background: url(../images/orbit/bullets.jpg) no-repeat 4px 0;
|
172
|
+
width: 13px;
|
173
|
+
height: 12px;
|
174
|
+
overflow: hidden;
|
175
|
+
&.active {
|
176
|
+
color: #222;
|
177
|
+
background-position: -8px 0; }
|
178
|
+
&.has-thumb {
|
179
|
+
background: none;
|
180
|
+
width: 100px;
|
181
|
+
height: 75px; }
|
182
|
+
&.active.has-thumb {
|
183
|
+
background-position: 0 0;
|
184
|
+
border-top: 2px solid #000; } } }
|
185
|
+
|
186
|
+
/* FLUID LAYOUT
|
187
|
+
================================================== */
|
188
|
+
|
189
|
+
.orbit {
|
190
|
+
.fluid-placeholder {
|
191
|
+
visibility: hidden;
|
192
|
+
position: static;
|
193
|
+
display: block;
|
194
|
+
width: 100%; }
|
195
|
+
width: 100% !important; }
|
196
|
+
|
197
|
+
.orbit-wrapper {
|
198
|
+
width: 100% !important; }
|
199
|
+
|
200
|
+
.orbit-bullets {
|
201
|
+
position: absolute;
|
202
|
+
z-index: 1000;
|
203
|
+
list-style: none;
|
204
|
+
bottom: -50px;
|
205
|
+
left: 50%;
|
206
|
+
margin-left: -50px;
|
207
|
+
padding: 0;
|
208
|
+
li {
|
209
|
+
float: left;
|
210
|
+
margin-left: 5px;
|
211
|
+
cursor: pointer;
|
212
|
+
color: #999;
|
213
|
+
text-indent: -9999px;
|
214
|
+
background: url(../images/orbit/bullets.jpg) no-repeat 4px 0;
|
215
|
+
width: 13px;
|
216
|
+
height: 12px;
|
217
|
+
overflow: hidden;
|
218
|
+
&.has-thumb {
|
219
|
+
background: none;
|
220
|
+
width: 100px;
|
221
|
+
height: 75px; }
|
222
|
+
&.active {
|
223
|
+
color: #222;
|
224
|
+
background-position: -8px 0;
|
225
|
+
&.has-thumb {
|
226
|
+
background-position: 0 0;
|
227
|
+
border-top: 2px solid #000; } } } }
|