kube-rails 0.0.10 → 0.2.0
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.
- checksums.yaml +4 -4
- data/lib/kube/rails/version.rb +1 -1
- data/vendor/kube/blocks.less +51 -14
- data/vendor/kube/buttons.less +138 -166
- data/vendor/kube/forms.less +100 -149
- data/vendor/kube/grid.less +122 -75
- data/vendor/kube/helpers.less +58 -56
- data/vendor/kube/kube.less +10 -24
- data/vendor/kube/mixins.less +130 -85
- data/vendor/kube/navigation.less +244 -0
- data/vendor/kube/{reset.less → normalize.less} +24 -14
- data/vendor/kube/prettyprint.less +69 -0
- data/vendor/kube/tables.less +24 -49
- data/vendor/kube/typography.less +324 -0
- data/vendor/kube/variables.less +42 -51
- metadata +8 -19
- data/vendor/kube/code.less +0 -8
- data/vendor/kube/colors.less +0 -52
- data/vendor/kube/images.less +0 -24
- data/vendor/kube/labels.less +0 -69
- data/vendor/kube/lists.less +0 -29
- data/vendor/kube/master.less +0 -234
- data/vendor/kube/messages.less +0 -34
- data/vendor/kube/navs.less +0 -338
- data/vendor/kube/responsive-blocks.less +0 -42
- data/vendor/kube/responsive-forms.less +0 -23
- data/vendor/kube/responsive-grid.less +0 -80
- data/vendor/kube/responsive-media.less +0 -31
- data/vendor/kube/responsive-navs.less +0 -50
- data/vendor/kube/responsive-utils.less +0 -22
- data/vendor/kube/typo.less +0 -257
data/vendor/kube/navs.less
DELETED
@@ -1,338 +0,0 @@
|
|
1
|
-
/* =Navs
|
2
|
-
-----------------------------------------------------------------------------*/
|
3
|
-
|
4
|
-
|
5
|
-
/* Horizontal */
|
6
|
-
.nav-h,
|
7
|
-
.nav-g {
|
8
|
-
margin-bottom: @baseLine/@em;
|
9
|
-
.clearfixing;
|
10
|
-
}
|
11
|
-
.nav-h ul,
|
12
|
-
.nav-g ul {
|
13
|
-
list-style: none;
|
14
|
-
margin: 0;
|
15
|
-
.clearfixing;
|
16
|
-
}
|
17
|
-
.nav-h ul li,
|
18
|
-
.nav-g ul li {
|
19
|
-
float: left;
|
20
|
-
margin-right: 1.5em;
|
21
|
-
}
|
22
|
-
.nav-h ul li a,
|
23
|
-
.nav-h ul li span,
|
24
|
-
.nav-g ul li a,
|
25
|
-
.nav-g ul li span {
|
26
|
-
display: block;
|
27
|
-
}
|
28
|
-
.nav-h ul li a,
|
29
|
-
.nav-g ul li a {
|
30
|
-
text-decoration: none;
|
31
|
-
}
|
32
|
-
.nav-h ul li a:hover,
|
33
|
-
.nav-g ul li a:hover {
|
34
|
-
color: @colorLinkHover;
|
35
|
-
text-decoration: underline;
|
36
|
-
}
|
37
|
-
.nav-h ul li span,
|
38
|
-
.nav-g ul li span {
|
39
|
-
color: @colorGrayLight;
|
40
|
-
}
|
41
|
-
|
42
|
-
/* Vertical */
|
43
|
-
.nav-v {
|
44
|
-
margin-bottom: @baseLine/@em;
|
45
|
-
}
|
46
|
-
.nav-v ul {
|
47
|
-
list-style: none;
|
48
|
-
margin: 0;
|
49
|
-
}
|
50
|
-
.nav-v ul li {
|
51
|
-
border-bottom: 1px solid #eee;
|
52
|
-
}
|
53
|
-
.nav-v ul li ul {
|
54
|
-
margin-left: 2em;
|
55
|
-
font-size: .95em;
|
56
|
-
}
|
57
|
-
.nav-v ul li ul li:last-child {
|
58
|
-
border-bottom: none;
|
59
|
-
}
|
60
|
-
.nav-v ul li ul li a,
|
61
|
-
.nav-v ul li ul li span {
|
62
|
-
padding: 4px 0;
|
63
|
-
}
|
64
|
-
.nav-v ul li a,
|
65
|
-
.nav-v ul li span {
|
66
|
-
display: block;
|
67
|
-
padding: 5px 0;
|
68
|
-
}
|
69
|
-
.nav-v ul li a {
|
70
|
-
text-decoration: none;
|
71
|
-
}
|
72
|
-
.nav-v ul li a:hover {
|
73
|
-
color: @colorLinkHover;
|
74
|
-
text-decoration: underline;
|
75
|
-
}
|
76
|
-
.nav-v ul li span {
|
77
|
-
color: @colorGrayLight;
|
78
|
-
}
|
79
|
-
|
80
|
-
/* Stacked */
|
81
|
-
.nav-stacked ul {
|
82
|
-
border: 1px solid #eee;
|
83
|
-
border-bottom: 0;
|
84
|
-
}
|
85
|
-
.nav-stacked ul li a,
|
86
|
-
.nav-stacked ul li span {
|
87
|
-
padding: 5px 10px;
|
88
|
-
}
|
89
|
-
.nav-stacked ul li a:hover {
|
90
|
-
background-color: #f5f5f5;
|
91
|
-
}
|
92
|
-
|
93
|
-
/* Stats */
|
94
|
-
.nav-stats li {
|
95
|
-
position: relative;
|
96
|
-
}
|
97
|
-
.nav-stats li a,
|
98
|
-
.nav-stats li span {
|
99
|
-
padding-right: 50px;
|
100
|
-
}
|
101
|
-
.nav-stats .label,
|
102
|
-
.nav-stats .label-badge {
|
103
|
-
position: absolute;
|
104
|
-
top: 50%;
|
105
|
-
margin-top: -8px;
|
106
|
-
right: 0;
|
107
|
-
}
|
108
|
-
.nav-stats.nav-stacked .label,
|
109
|
-
.nav-stats.nav-stacked .label-badge {
|
110
|
-
right: 4px;
|
111
|
-
}
|
112
|
-
.nav-stats .label.label-data,
|
113
|
-
.nav-stacked .label-data {
|
114
|
-
margin-top: -6px;
|
115
|
-
right: 6px;
|
116
|
-
}
|
117
|
-
|
118
|
-
.nav-v h1,
|
119
|
-
.nav-v h2,
|
120
|
-
.nav-v h3,
|
121
|
-
.nav-v h4,
|
122
|
-
.nav-v h5,
|
123
|
-
.nav-v h6 {
|
124
|
-
margin-top: 1.5em;
|
125
|
-
margin-bottom: 3px;
|
126
|
-
}
|
127
|
-
.nav-v h1:first-child,
|
128
|
-
.nav-v h2:first-child,
|
129
|
-
.nav-v h3:first-child,
|
130
|
-
.nav-v h4:first-child,
|
131
|
-
.nav-v h5:first-child,
|
132
|
-
.nav-v h6:first-child {
|
133
|
-
margin-top: 0;
|
134
|
-
}
|
135
|
-
|
136
|
-
/* Breadcrumbs */
|
137
|
-
.breadcrumbs {
|
138
|
-
margin-bottom: @baseLine/@em;
|
139
|
-
.clearfixing;
|
140
|
-
}
|
141
|
-
.breadcrumbs ul {
|
142
|
-
font-size: .9em;
|
143
|
-
color: #999;
|
144
|
-
list-style: none;
|
145
|
-
margin: 0;
|
146
|
-
.clearfixing;
|
147
|
-
}
|
148
|
-
.breadcrumbs ul li {
|
149
|
-
float: left;
|
150
|
-
margin-right: 3px;
|
151
|
-
}
|
152
|
-
.breadcrumbs li + li:before {
|
153
|
-
content: " > ";
|
154
|
-
color: #aaa;
|
155
|
-
font-size: 12px;
|
156
|
-
margin: 0 3px;
|
157
|
-
position: relative;
|
158
|
-
top: -1px;
|
159
|
-
}
|
160
|
-
.breadcrumbs-sections li + li:before {
|
161
|
-
content: " | ";
|
162
|
-
top: 0;
|
163
|
-
}
|
164
|
-
.breadcrumbs-path li + li:before {
|
165
|
-
content: " / ";
|
166
|
-
top: 0;
|
167
|
-
}
|
168
|
-
.breadcrumbs ul li a {
|
169
|
-
color: @colorBlack;
|
170
|
-
text-decoration: none;
|
171
|
-
}
|
172
|
-
.breadcrumbs ul li a.active {
|
173
|
-
color: #999;
|
174
|
-
}
|
175
|
-
.breadcrumbs ul li a:hover {
|
176
|
-
color: #000;
|
177
|
-
text-decoration: underline;
|
178
|
-
}
|
179
|
-
|
180
|
-
/* Tabs */
|
181
|
-
.nav-tabs {
|
182
|
-
border-bottom: 1px solid #e3e3e3;
|
183
|
-
margin-bottom: @baseLine/@em;
|
184
|
-
.clearfixing;
|
185
|
-
}
|
186
|
-
.nav-tabs ul {
|
187
|
-
list-style: none;
|
188
|
-
margin: 0;
|
189
|
-
.clearfixing;
|
190
|
-
}
|
191
|
-
.nav-tabs ul li {
|
192
|
-
float: left;
|
193
|
-
margin-right: 2px;
|
194
|
-
}
|
195
|
-
.nav-tabs ul li a,
|
196
|
-
.nav-tabs ul li span {
|
197
|
-
display: block;
|
198
|
-
line-height: 1;
|
199
|
-
padding: 8px 12px 9px 12px;
|
200
|
-
}
|
201
|
-
.nav-tabs ul li a {
|
202
|
-
color: @colorGrayLight;
|
203
|
-
text-decoration: none;
|
204
|
-
}
|
205
|
-
.nav-tabs ul li a:focus,
|
206
|
-
.nav-tabs ul li a:hover {
|
207
|
-
color: @colorBlack;
|
208
|
-
text-decoration: underline;
|
209
|
-
}
|
210
|
-
.nav-tabs ul li .active,
|
211
|
-
.nav-tabs ul li span {
|
212
|
-
color: @colorBlack;
|
213
|
-
background: #fff;
|
214
|
-
margin-top: -2px;
|
215
|
-
position: relative;
|
216
|
-
padding: 8px 11px 9px 11px;
|
217
|
-
border: 1px solid #ddd;
|
218
|
-
border-bottom: 1px solid #fff;
|
219
|
-
bottom: -1px;
|
220
|
-
}
|
221
|
-
.nav-tabs ul li .active {
|
222
|
-
cursor: default;
|
223
|
-
}
|
224
|
-
|
225
|
-
/* Vertical tabs */
|
226
|
-
.nav-tabs-v {
|
227
|
-
border: none;
|
228
|
-
border-right: 1px solid #e3e3e3;
|
229
|
-
}
|
230
|
-
.nav-tabs-v ul li {
|
231
|
-
float: none;
|
232
|
-
}
|
233
|
-
.nav-tabs-v ul li span {
|
234
|
-
margin-top: 0;
|
235
|
-
bottom: 0;
|
236
|
-
margin-right: -3px;
|
237
|
-
border: 1px solid #ddd;
|
238
|
-
border-right: 1px solid #fff;
|
239
|
-
}
|
240
|
-
|
241
|
-
/* Pills */
|
242
|
-
.nav-pills {
|
243
|
-
margin-bottom: @baseLine/@em - .5em;
|
244
|
-
.clearfixing;
|
245
|
-
}
|
246
|
-
.nav-pills ul {
|
247
|
-
list-style: none;
|
248
|
-
margin: 0;
|
249
|
-
.clearfixing;
|
250
|
-
}
|
251
|
-
.nav-pills ul li {
|
252
|
-
float: left;
|
253
|
-
margin-right: .5em;
|
254
|
-
margin-bottom: @baseLine/@em - 1em;
|
255
|
-
}
|
256
|
-
.nav-pills ul li a,
|
257
|
-
.nav-pills ul li span {
|
258
|
-
display: block;
|
259
|
-
padding: 6px 15px;
|
260
|
-
line-height: 1;
|
261
|
-
border-radius: 15px;
|
262
|
-
}
|
263
|
-
.nav-pills ul li a {
|
264
|
-
color: @colorGray;
|
265
|
-
text-decoration: none;
|
266
|
-
background-color: #f3f4f5;
|
267
|
-
}
|
268
|
-
.nav-pills ul li a:hover {
|
269
|
-
color: @colorGrayDark;
|
270
|
-
text-decoration: underline;
|
271
|
-
}
|
272
|
-
.nav-pills ul li .active,
|
273
|
-
.nav-pills ul li .active:hover,
|
274
|
-
.nav-pills ul li span {
|
275
|
-
color: @colorGray;
|
276
|
-
padding: 5px 14px;
|
277
|
-
border: 1px solid #ddd;
|
278
|
-
background: none;
|
279
|
-
}
|
280
|
-
.nav-pills ul li .active,
|
281
|
-
.nav-pills ul li .active:hover {
|
282
|
-
cursor: default;
|
283
|
-
text-decoration: none;
|
284
|
-
}
|
285
|
-
|
286
|
-
/* =Pagination
|
287
|
-
-----------------------------------------------------------------------------*/
|
288
|
-
.pagination {
|
289
|
-
position: relative;
|
290
|
-
left: -9px;
|
291
|
-
margin-left: 0;
|
292
|
-
list-style: none;
|
293
|
-
.clearfixing();
|
294
|
-
}
|
295
|
-
.pagination li {
|
296
|
-
float: left;
|
297
|
-
margin-right: 2px;
|
298
|
-
}
|
299
|
-
.pagination li a,
|
300
|
-
.pagination li span {
|
301
|
-
display: block;
|
302
|
-
padding: 7px 9px;
|
303
|
-
line-height: 1;
|
304
|
-
border-radius: 2em;
|
305
|
-
color: #000;
|
306
|
-
text-decoration: none;
|
307
|
-
}
|
308
|
-
.pagination span {
|
309
|
-
border: 1px solid #ddd;
|
310
|
-
}
|
311
|
-
.pagination li a:focus,
|
312
|
-
.pagination li a:hover {
|
313
|
-
text-decoration: underline;
|
314
|
-
background-color: #333;
|
315
|
-
color: @colorWhite;
|
316
|
-
}
|
317
|
-
|
318
|
-
.pagination li.pagination-older {
|
319
|
-
margin-left: 7px;
|
320
|
-
}
|
321
|
-
.pagination li.pagination-older a,
|
322
|
-
.pagination li.pagination-newest a,
|
323
|
-
.pagination li.pagination-older span,
|
324
|
-
.pagination li.pagination-newest span {
|
325
|
-
padding: 5px 15px;
|
326
|
-
border-radius: 2em;
|
327
|
-
border: 1px solid #ddd;
|
328
|
-
}
|
329
|
-
.pagination li.pagination-older span,
|
330
|
-
.pagination li.pagination-newest span {
|
331
|
-
border-color: #eee;
|
332
|
-
color: #999;
|
333
|
-
}
|
334
|
-
.pagination li.pagination-pull {
|
335
|
-
float: right;
|
336
|
-
margin-right: -7px;
|
337
|
-
margin-left: .5em;
|
338
|
-
}
|
@@ -1,42 +0,0 @@
|
|
1
|
-
/* =Mobile (Portrait)
|
2
|
-
-----------------------------------------------------------------------------*/
|
3
|
-
@media only screen and (max-width: 767px) {
|
4
|
-
|
5
|
-
.blocks-2,
|
6
|
-
.blocks-3,
|
7
|
-
.blocks-4,
|
8
|
-
.blocks-5,
|
9
|
-
.blocks-6 {
|
10
|
-
margin-left: 0;
|
11
|
-
margin-bottom: @baseLine/@em;
|
12
|
-
}
|
13
|
-
|
14
|
-
.blocks-2 > li,
|
15
|
-
.blocks-3 > li,
|
16
|
-
.blocks-4 > li,
|
17
|
-
.blocks-5 > li,
|
18
|
-
.blocks-6 > li {
|
19
|
-
float: none;
|
20
|
-
margin-left: 0;
|
21
|
-
width: 100%;
|
22
|
-
}
|
23
|
-
|
24
|
-
.blocks-mobile-50 > li,
|
25
|
-
.blocks-mobile-33 > li {
|
26
|
-
float: left;
|
27
|
-
margin-left: @gridGutterWidth/(@gridWidth/100)*1%;
|
28
|
-
}
|
29
|
-
.blocks-mobile-33,
|
30
|
-
.blocks-mobile-50 {
|
31
|
-
margin-left: -@gridGutterWidth/(@gridWidth/100)*1%;
|
32
|
-
}
|
33
|
-
|
34
|
-
.blocks-mobile-50 > li {
|
35
|
-
.block(2);
|
36
|
-
}
|
37
|
-
.blocks-mobile-33 > li {
|
38
|
-
.block(3);
|
39
|
-
}
|
40
|
-
|
41
|
-
|
42
|
-
}
|
@@ -1,23 +0,0 @@
|
|
1
|
-
/* =Mobile (Portrait)
|
2
|
-
-----------------------------------------------------------------------------*/
|
3
|
-
@media only screen and (max-width: 767px) {
|
4
|
-
|
5
|
-
.forms-columnar label {
|
6
|
-
float: none;
|
7
|
-
text-align: left;
|
8
|
-
width: auto;
|
9
|
-
margin-bottom: 0;
|
10
|
-
}
|
11
|
-
.forms-push label {
|
12
|
-
position: relative;
|
13
|
-
}
|
14
|
-
.forms-push,
|
15
|
-
.forms-columnar .forms-section {
|
16
|
-
padding-left: 0;
|
17
|
-
}
|
18
|
-
.forms-columnar .forms-list,
|
19
|
-
.forms-columnar .forms-inline-list {
|
20
|
-
margin-left: 0;
|
21
|
-
}
|
22
|
-
|
23
|
-
}
|
@@ -1,80 +0,0 @@
|
|
1
|
-
/* =Mobile (Portrait)
|
2
|
-
-----------------------------------------------------------------------------*/
|
3
|
-
@media only screen and (max-width: 767px) {
|
4
|
-
|
5
|
-
.units-row .unit-80,
|
6
|
-
.units-row .unit-75,
|
7
|
-
.units-row .unit-70,
|
8
|
-
.units-row .unit-66,
|
9
|
-
.units-row .unit-60,
|
10
|
-
.units-row .unit-50,
|
11
|
-
.units-row .unit-40,
|
12
|
-
.units-row .unit-33,
|
13
|
-
.units-row .unit-30,
|
14
|
-
.units-row .unit-25,
|
15
|
-
.units-row .unit-20,
|
16
|
-
.units-row-end .unit-80,
|
17
|
-
.units-row-end .unit-75,
|
18
|
-
.units-row-end .unit-70,
|
19
|
-
.units-row-end .unit-66,
|
20
|
-
.units-row-end .unit-60,
|
21
|
-
.units-row-end .unit-50,
|
22
|
-
.units-row-end .unit-40,
|
23
|
-
.units-row-end .unit-33,
|
24
|
-
.units-row-end .unit-30,
|
25
|
-
.units-row-end .unit-25,
|
26
|
-
.units-row-end .unit-20 {
|
27
|
-
width: 100%;
|
28
|
-
float: none;
|
29
|
-
margin-left: 0;
|
30
|
-
margin-bottom: @baseLine/@em;
|
31
|
-
}
|
32
|
-
|
33
|
-
.unit-push-80,
|
34
|
-
.unit-push-75,
|
35
|
-
.unit-push-70,
|
36
|
-
.unit-push-66,
|
37
|
-
.unit-push-60,
|
38
|
-
.unit-push-50,
|
39
|
-
.unit-push-40,
|
40
|
-
.unit-push-33,
|
41
|
-
.unit-push-30,
|
42
|
-
.unit-push-25,
|
43
|
-
.unit-push-20 {
|
44
|
-
left: 0;
|
45
|
-
}
|
46
|
-
|
47
|
-
.units-row-end .unit-push-right,
|
48
|
-
.units-row .unit-push-right {
|
49
|
-
float: none;
|
50
|
-
}
|
51
|
-
|
52
|
-
.units-mobile-50 .unit-80,
|
53
|
-
.units-mobile-50 .unit-75,
|
54
|
-
.units-mobile-50 .unit-70,
|
55
|
-
.units-mobile-50 .unit-66,
|
56
|
-
.units-mobile-50 .unit-60,
|
57
|
-
.units-mobile-50 .unit-40,
|
58
|
-
.units-mobile-50 .unit-30,
|
59
|
-
.units-mobile-50 .unit-33,
|
60
|
-
.units-mobile-50 .unit-25,
|
61
|
-
.units-mobile-50 .unit-20 {
|
62
|
-
float: left;
|
63
|
-
margin-left: @gridGutterWidth/(@gridWidth/100)*1%;
|
64
|
-
.column(2);
|
65
|
-
}
|
66
|
-
.units-mobile-50 .unit-80:first-child,
|
67
|
-
.units-mobile-50 .unit-75:first-child,
|
68
|
-
.units-mobile-50 .unit-70:first-child,
|
69
|
-
.units-mobile-50 .unit-66:first-child,
|
70
|
-
.units-mobile-50 .unit-60:first-child,
|
71
|
-
.units-mobile-50 .unit-40:first-child,
|
72
|
-
.units-mobile-50 .unit-30:first-child,
|
73
|
-
.units-mobile-50 .unit-33:first-child,
|
74
|
-
.units-mobile-50 .unit-25:first-child,
|
75
|
-
.units-mobile-50 .unit-20:first-child {
|
76
|
-
margin-left: 0;
|
77
|
-
}
|
78
|
-
|
79
|
-
|
80
|
-
}
|
@@ -1,31 +0,0 @@
|
|
1
|
-
/* =Media
|
2
|
-
-----------------------------------------------------------------------------*/
|
3
|
-
|
4
|
-
/* Responsive images and other embedded objects */
|
5
|
-
img,
|
6
|
-
video {
|
7
|
-
max-width: 100%;
|
8
|
-
height: auto;
|
9
|
-
}
|
10
|
-
img {
|
11
|
-
-ms-interpolation-mode: bicubic;
|
12
|
-
}
|
13
|
-
audio {
|
14
|
-
width: 100%;
|
15
|
-
}
|
16
|
-
|
17
|
-
.video-wrapper {
|
18
|
-
height: 0;
|
19
|
-
padding-bottom: 56.25%; /* ratio 16:9 */
|
20
|
-
position: relative;
|
21
|
-
margin-bottom: @baseLine/@em;
|
22
|
-
}
|
23
|
-
.video-wrapper iframe,
|
24
|
-
.video-wrapper object,
|
25
|
-
.video-wrapper embed {
|
26
|
-
position: absolute;
|
27
|
-
top: 0;
|
28
|
-
left: 0;
|
29
|
-
width: 100%;
|
30
|
-
height: 100%;
|
31
|
-
}
|
@@ -1,50 +0,0 @@
|
|
1
|
-
/* =Mobile (Portrait)
|
2
|
-
-----------------------------------------------------------------------------*/
|
3
|
-
@media only screen and (max-width: 767px) {
|
4
|
-
|
5
|
-
.nav-h,
|
6
|
-
.nav-h ul,
|
7
|
-
.nav-h ul li,
|
8
|
-
.nav-h,
|
9
|
-
.nav-g,
|
10
|
-
.nav-g ul,
|
11
|
-
.nav-g ul li,
|
12
|
-
.nav-g,
|
13
|
-
.nav-v ul,
|
14
|
-
.nav-v,
|
15
|
-
.nav-tabs ul,
|
16
|
-
.nav-pills,
|
17
|
-
.nav-pills ul {
|
18
|
-
float: none;
|
19
|
-
}
|
20
|
-
.nav-h ul li,
|
21
|
-
.nav-g ul li {
|
22
|
-
margin: 0;
|
23
|
-
margin-bottom: 1px;
|
24
|
-
}
|
25
|
-
|
26
|
-
.nav-tabs ul li {
|
27
|
-
float: none;
|
28
|
-
margin-right: 0;
|
29
|
-
}
|
30
|
-
.nav-tabs ul li a,
|
31
|
-
.nav-tabs ul li span,
|
32
|
-
.nav-tabs ul li .active {
|
33
|
-
margin-top: 0;
|
34
|
-
bottom: 0;
|
35
|
-
padding: 8px 12px 9px 12px;
|
36
|
-
border: 1px solid #ddd;
|
37
|
-
border-bottom: none;
|
38
|
-
}
|
39
|
-
|
40
|
-
.nav-tabs-v {
|
41
|
-
border-bottom: 1px solid #ddd;
|
42
|
-
border-right: none;
|
43
|
-
}
|
44
|
-
.nav-tabs-v ul li span {
|
45
|
-
margin-top: 0;
|
46
|
-
bottom: 0;
|
47
|
-
margin-right: 0;
|
48
|
-
}
|
49
|
-
|
50
|
-
}
|
@@ -1,22 +0,0 @@
|
|
1
|
-
/* =Tablet and Desktop
|
2
|
-
-----------------------------------------------------------------------------*/
|
3
|
-
@media (min-width: 768px) {
|
4
|
-
|
5
|
-
.desktop-hide {
|
6
|
-
display: none;
|
7
|
-
}
|
8
|
-
|
9
|
-
}
|
10
|
-
|
11
|
-
/* =Mobile (Portrait)
|
12
|
-
-----------------------------------------------------------------------------*/
|
13
|
-
@media only screen and (max-width: 767px) {
|
14
|
-
|
15
|
-
.mobile-text-centered {
|
16
|
-
text-align: center;
|
17
|
-
}
|
18
|
-
.mobile-hide {
|
19
|
-
display: none;
|
20
|
-
}
|
21
|
-
|
22
|
-
}
|