ThemevampRails 0.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.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +31 -0
- data/Rakefile +2 -0
- data/ThemevampRails.gemspec +23 -0
- data/lib/ThemevampRails/version.rb +3 -0
- data/lib/ThemevampRails.rb +6 -0
- data/vendor/assets/font/FontAwesome.otf +0 -0
- data/vendor/assets/font/fontawesome-webfont.eot +0 -0
- data/vendor/assets/font/fontawesome-webfont.svg +399 -0
- data/vendor/assets/font/fontawesome-webfont.svgz +0 -0
- data/vendor/assets/font/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/font/fontawesome-webfont.woff +0 -0
- data/vendor/assets/font/fontawesome-webfontd41d.eot +0 -0
- data/vendor/assets/images/body-bg.png +0 -0
- data/vendor/assets/images/glyphicons-halflings-white.html +7 -0
- data/vendor/assets/images/glyphicons-halflings.html +7 -0
- data/vendor/assets/images/icons-sa7c41345d9.png +0 -0
- data/vendor/assets/images/message_avatar1.png +0 -0
- data/vendor/assets/images/message_avatar2.png +0 -0
- data/vendor/assets/images/signin/check.png +0 -0
- data/vendor/assets/images/signin/fb_btn.png +0 -0
- data/vendor/assets/images/signin/password.png +0 -0
- data/vendor/assets/images/signin/twitter_btn.png +0 -0
- data/vendor/assets/images/signin/user.png +0 -0
- data/vendor/assets/javascript/base.js +16 -0
- data/vendor/assets/javascript/bootstrap.js +1726 -0
- data/vendor/assets/javascript/chart.min.js +39 -0
- data/vendor/assets/javascript/charts/area.js +42 -0
- data/vendor/assets/javascript/charts/bar.js +35 -0
- data/vendor/assets/javascript/charts/donut.js +21 -0
- data/vendor/assets/javascript/charts/line.js +20 -0
- data/vendor/assets/javascript/charts/pie.js +41 -0
- data/vendor/assets/javascript/excanvas.min.js +1 -0
- data/vendor/assets/javascript/faq.js +159 -0
- data/vendor/assets/javascript/full-calendar/fullcalendar.css +655 -0
- data/vendor/assets/javascript/full-calendar/fullcalendar.min.js +114 -0
- data/vendor/assets/javascript/guidely/guidely-number.png +0 -0
- data/vendor/assets/javascript/guidely/guidely.css +144 -0
- data/vendor/assets/javascript/guidely/guidely.min.js +11 -0
- data/vendor/assets/javascript/jquery-1.7.2.min.js +4 -0
- data/vendor/assets/javascript/signin.js +13 -0
- data/vendor/assets/stylesheets/base-admin-responsive.css +6 -0
- data/vendor/assets/stylesheets/bootstrap-responsive.min.css +12 -0
- data/vendor/assets/stylesheets/bootstrap.css +4437 -0
- data/vendor/assets/stylesheets/bootstrap.min.css +3647 -0
- data/vendor/assets/stylesheets/font-awesome-ie7.css +1203 -0
- data/vendor/assets/stylesheets/font-awesome-ie7.min.css +384 -0
- data/vendor/assets/stylesheets/font-awesome.css +1479 -0
- data/vendor/assets/stylesheets/font-awesome.min.css +403 -0
- data/vendor/assets/stylesheets/pages/dashboard.css +326 -0
- data/vendor/assets/stylesheets/pages/faq.css +109 -0
- data/vendor/assets/stylesheets/pages/plans.css +319 -0
- data/vendor/assets/stylesheets/pages/reports.css +33 -0
- data/vendor/assets/stylesheets/pages/signin.css +247 -0
- data/vendor/assets/stylesheets/style.css +1286 -0
- metadata +129 -0
@@ -0,0 +1,1286 @@
|
|
1
|
+
/*------------------------------------------------------------------
|
2
|
+
Bootstrap Admin Template by EGrappler.com
|
3
|
+
------------------------------------------------------------------*/
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
/*------------------------------------------------------------------
|
8
|
+
[1. Global]
|
9
|
+
*/
|
10
|
+
|
11
|
+
body {
|
12
|
+
background: #f9f6f1;
|
13
|
+
font: 13px/1.7em 'Open Sans';
|
14
|
+
}
|
15
|
+
|
16
|
+
p {
|
17
|
+
font: 13px/1.7em 'Open Sans';
|
18
|
+
}
|
19
|
+
|
20
|
+
input,
|
21
|
+
button,
|
22
|
+
select,
|
23
|
+
textarea {
|
24
|
+
font-family: 'Open Sans';
|
25
|
+
}
|
26
|
+
|
27
|
+
.dropdown .dropdown-menu {
|
28
|
+
-webkit-border-radius: 6px;
|
29
|
+
-moz-border-radius: 6px;
|
30
|
+
border-radius: 6px;
|
31
|
+
}
|
32
|
+
|
33
|
+
.btn-icon-only {
|
34
|
+
padding-right: 3px;
|
35
|
+
padding-left: 3px;
|
36
|
+
}
|
37
|
+
|
38
|
+
.table td {
|
39
|
+
vertical-align: middle;
|
40
|
+
}
|
41
|
+
|
42
|
+
.table-bordered th {
|
43
|
+
background: #E9E9E9;
|
44
|
+
background:-moz-linear-gradient(top, #FAFAFA 0%, #E9E9E9 100%); /* FF3.6+ */
|
45
|
+
background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#FAFAFA), color-stop(100%,#E9E9E9)); /* Chrome,Safari4+ */
|
46
|
+
background:-webkit-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* Chrome10+,Safari5.1+ */
|
47
|
+
background:-o-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* Opera11.10+ */
|
48
|
+
background:-ms-linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* IE10+ */
|
49
|
+
background:linear-gradient(top, #FAFAFA 0%,#E9E9E9 100%); /* W3C */
|
50
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9');
|
51
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#FAFAFA', endColorstr='#E9E9E9')";
|
52
|
+
|
53
|
+
font-size: 10px;
|
54
|
+
color: #444;
|
55
|
+
text-transform: uppercase;
|
56
|
+
}
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
/*------------------------------------------------------------------
|
65
|
+
[2. Navbar / .navbar]
|
66
|
+
*/
|
67
|
+
|
68
|
+
.navbar .container {
|
69
|
+
position: relative;
|
70
|
+
}
|
71
|
+
|
72
|
+
.navbar-inner {
|
73
|
+
padding: 7px 0;
|
74
|
+
|
75
|
+
background: #00ba8b !important;
|
76
|
+
|
77
|
+
-moz-border-radius: 0;
|
78
|
+
-webkit-border-radius: 0;
|
79
|
+
border-radius: 0;
|
80
|
+
}
|
81
|
+
|
82
|
+
.navbar-fixed-top {
|
83
|
+
position: static;
|
84
|
+
}
|
85
|
+
|
86
|
+
.navbar .nav a {
|
87
|
+
font-size: 11px;
|
88
|
+
}
|
89
|
+
.navbar .nav>li>a { color:#fff !important;}
|
90
|
+
.navbar .brand {
|
91
|
+
font-weight: 600;
|
92
|
+
position: relative;
|
93
|
+
top: 2px;
|
94
|
+
}
|
95
|
+
|
96
|
+
.navbar .search-query {
|
97
|
+
background-color: #444;
|
98
|
+
width: 150px;
|
99
|
+
font-size: 11px;
|
100
|
+
font-weight: bold;
|
101
|
+
}
|
102
|
+
|
103
|
+
.navbar .search-query::-webkit-input-placeholder {
|
104
|
+
color: #666;
|
105
|
+
}
|
106
|
+
|
107
|
+
.navbar .search-query:-moz-placeholder {
|
108
|
+
color: #666;
|
109
|
+
}
|
110
|
+
|
111
|
+
.navbar-search .search-query { background:#008866; border:0; color:#fff; line-height:normal;}
|
112
|
+
|
113
|
+
|
114
|
+
/*------------------------------------------------------------------
|
115
|
+
[3. Subnavbar / .subnavbar]
|
116
|
+
*/
|
117
|
+
|
118
|
+
.subnavbar {
|
119
|
+
margin-bottom: 2.5em;
|
120
|
+
}
|
121
|
+
|
122
|
+
.subnavbar-inner {
|
123
|
+
height: 60px;
|
124
|
+
background: #fff;
|
125
|
+
border-bottom: 1px solid #d6d6d6;
|
126
|
+
}
|
127
|
+
|
128
|
+
.subnavbar .container > ul {
|
129
|
+
display: inline-block;
|
130
|
+
|
131
|
+
height: 80px;
|
132
|
+
padding: 0;
|
133
|
+
margin: 0;
|
134
|
+
|
135
|
+
}
|
136
|
+
|
137
|
+
.subnavbar .container > ul > li {
|
138
|
+
float: left;
|
139
|
+
|
140
|
+
min-width: 90px;
|
141
|
+
height: 60px;
|
142
|
+
padding: 0;
|
143
|
+
margin: 0;
|
144
|
+
|
145
|
+
text-align: center;
|
146
|
+
list-style: none;
|
147
|
+
|
148
|
+
border-left: 1px solid #d9d9d9;
|
149
|
+
|
150
|
+
|
151
|
+
}
|
152
|
+
|
153
|
+
.subnavbar .container > ul > li > a {
|
154
|
+
display: block;
|
155
|
+
|
156
|
+
height: 100%;
|
157
|
+
padding: 0 15px;
|
158
|
+
|
159
|
+
font-size: 12px;
|
160
|
+
font-weight: bold;
|
161
|
+
color: #b2afaa;
|
162
|
+
}
|
163
|
+
|
164
|
+
.subnavbar .container > ul > li > a:hover {
|
165
|
+
color: #888;
|
166
|
+
text-decoration: none;
|
167
|
+
}
|
168
|
+
|
169
|
+
.subnavbar .container > ul > li > a > i {
|
170
|
+
display: inline-block;
|
171
|
+
|
172
|
+
width: 24px;
|
173
|
+
height: 24px;
|
174
|
+
margin-top: 11px;
|
175
|
+
margin-bottom: -3px;
|
176
|
+
font-size: 20px;
|
177
|
+
}
|
178
|
+
|
179
|
+
.subnavbar .container > ul > li > a > span {
|
180
|
+
display: block;
|
181
|
+
|
182
|
+
}
|
183
|
+
|
184
|
+
|
185
|
+
.subnavbar .container > ul > li.active > a {
|
186
|
+
|
187
|
+
border-bottom:3px solid #ff7f74;
|
188
|
+
color: #383838;
|
189
|
+
}
|
190
|
+
|
191
|
+
|
192
|
+
.subnavbar .dropdown .dropdown-menu a {
|
193
|
+
font-size: 12px;
|
194
|
+
}
|
195
|
+
|
196
|
+
|
197
|
+
.subnavbar .dropdown .dropdown-menu {
|
198
|
+
text-align: left;
|
199
|
+
|
200
|
+
-webkit-border-top-left-radius: 0;
|
201
|
+
-webkit-border-top-right-radius: 0;
|
202
|
+
-moz-border-radius-topleft: 0;
|
203
|
+
-moz-border-radius-topright: 0;
|
204
|
+
border-top-left-radius: 0;
|
205
|
+
border-top-right-radius: 0;
|
206
|
+
}
|
207
|
+
|
208
|
+
|
209
|
+
|
210
|
+
.subnavbar .dropdown-menu::before {
|
211
|
+
content: '';
|
212
|
+
display: inline-block;
|
213
|
+
border-left: 7px solid transparent;
|
214
|
+
border-right: 7px solid transparent;
|
215
|
+
border-bottom: 7px solid #CCC;
|
216
|
+
border-bottom-color: rgba(0, 0, 0, 0.2);
|
217
|
+
position: absolute;
|
218
|
+
top: -7px;
|
219
|
+
left: 9px;
|
220
|
+
}
|
221
|
+
|
222
|
+
.subnavbar .dropdown-menu::after {
|
223
|
+
content: '';
|
224
|
+
display: inline-block;
|
225
|
+
border-left: 6px solid transparent;
|
226
|
+
border-right: 6px solid transparent;
|
227
|
+
border-bottom: 6px solid white;
|
228
|
+
position: absolute;
|
229
|
+
top: -6px;
|
230
|
+
left: 10px;
|
231
|
+
}
|
232
|
+
|
233
|
+
|
234
|
+
.subnavbar .caret {
|
235
|
+
margin-top: 4px;
|
236
|
+
|
237
|
+
border-top-color: white;
|
238
|
+
border-bottom-color: white;
|
239
|
+
}
|
240
|
+
|
241
|
+
.subnavbar .dropdown.open .caret {
|
242
|
+
display: none;
|
243
|
+
}
|
244
|
+
|
245
|
+
|
246
|
+
|
247
|
+
|
248
|
+
|
249
|
+
/*------------------------------------------------------------------
|
250
|
+
[4. Main / .main]
|
251
|
+
*/
|
252
|
+
|
253
|
+
.main {
|
254
|
+
padding-bottom: 2em;
|
255
|
+
|
256
|
+
border-bottom: 1px solid #000;
|
257
|
+
}
|
258
|
+
|
259
|
+
|
260
|
+
|
261
|
+
/*------------------------------------------------------------------
|
262
|
+
[5. Extra / .extra]
|
263
|
+
*/
|
264
|
+
|
265
|
+
.extra {
|
266
|
+
|
267
|
+
border-top: 1px solid #585858;
|
268
|
+
border-bottom: 1px solid #000;
|
269
|
+
|
270
|
+
}
|
271
|
+
|
272
|
+
.extra-inner {
|
273
|
+
padding: 20px 0;
|
274
|
+
|
275
|
+
font-size: 11px;
|
276
|
+
color: #BBB;
|
277
|
+
|
278
|
+
background: #1A1A1A;
|
279
|
+
}
|
280
|
+
|
281
|
+
.extra a {
|
282
|
+
color: #666;
|
283
|
+
}
|
284
|
+
|
285
|
+
.extra h4 {
|
286
|
+
margin-bottom: 1em;
|
287
|
+
|
288
|
+
font-weight: 400;
|
289
|
+
}
|
290
|
+
|
291
|
+
.extra ul {
|
292
|
+
padding: 0;
|
293
|
+
margin: 0;
|
294
|
+
}
|
295
|
+
|
296
|
+
.extra li {
|
297
|
+
margin-bottom: .6em;
|
298
|
+
|
299
|
+
list-style: none;
|
300
|
+
}
|
301
|
+
|
302
|
+
|
303
|
+
|
304
|
+
|
305
|
+
/*------------------------------------------------------------------
|
306
|
+
[6. Footer/ .footer]
|
307
|
+
*/
|
308
|
+
|
309
|
+
.footer {
|
310
|
+
margin-top: 0;
|
311
|
+
|
312
|
+
border-top: 1px solid #292929;
|
313
|
+
}
|
314
|
+
|
315
|
+
.footer-inner {
|
316
|
+
padding: 15px 0;
|
317
|
+
|
318
|
+
font-size: 12px;
|
319
|
+
background: #111;
|
320
|
+
color: #999;
|
321
|
+
}
|
322
|
+
|
323
|
+
.footer a {
|
324
|
+
color: #999;
|
325
|
+
}
|
326
|
+
|
327
|
+
.footer a:hover {
|
328
|
+
color: #FFF;
|
329
|
+
text-decoration: none;
|
330
|
+
}
|
331
|
+
|
332
|
+
|
333
|
+
/*------------------------------------------------------------------
|
334
|
+
[6. Widget / .widget]
|
335
|
+
*/
|
336
|
+
|
337
|
+
.widget {
|
338
|
+
|
339
|
+
position: relative;
|
340
|
+
clear: both;
|
341
|
+
|
342
|
+
width: auto;
|
343
|
+
|
344
|
+
margin-bottom: 2em;
|
345
|
+
|
346
|
+
overflow: hidden;
|
347
|
+
}
|
348
|
+
|
349
|
+
.widget-header {
|
350
|
+
|
351
|
+
position: relative;
|
352
|
+
|
353
|
+
height: 40px;
|
354
|
+
line-height: 40px;
|
355
|
+
|
356
|
+
background: #f9f6f1;
|
357
|
+
background:-moz-linear-gradient(top, #f9f6f1 0%, #f2efea 100%); /* FF3.6+ */
|
358
|
+
background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f6f1), color-stop(100%,#f2efea)); /* Chrome,Safari4+ */
|
359
|
+
background:-webkit-linear-gradient(top, #f9f6f1 0%,#f2efea 100%); /* Chrome10+,Safari5.1+ */
|
360
|
+
background:-o-linear-gradient(top, #f9f6f1 0%,#f2efea 100%); /* Opera11.10+ */
|
361
|
+
background:-ms-linear-gradient(top, #f9f6f1 0%,#f2efea 100%); /* IE10+ */
|
362
|
+
background:linear-gradient(top, #f9f6f1 0%,#f2efea 100%); /* W3C */
|
363
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f6f1', endColorstr='#f2efea');
|
364
|
+
-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f6f1', endColorstr='#f2efea')";
|
365
|
+
|
366
|
+
|
367
|
+
border: 1px solid #d6d6d6;
|
368
|
+
|
369
|
+
|
370
|
+
-webkit-background-clip: padding-box;
|
371
|
+
}
|
372
|
+
|
373
|
+
.widget-header h3 {
|
374
|
+
|
375
|
+
position: relative;
|
376
|
+
top: 2px;
|
377
|
+
left: 10px;
|
378
|
+
|
379
|
+
display: inline-block;
|
380
|
+
margin-right: 3em;
|
381
|
+
|
382
|
+
font-size: 14px;
|
383
|
+
font-weight: 800;
|
384
|
+
color: #525252;
|
385
|
+
line-height: 18px;
|
386
|
+
|
387
|
+
text-shadow: 1px 1px 2px rgba(255,255,255,.5);
|
388
|
+
}
|
389
|
+
|
390
|
+
.widget-header [class^="icon-"], .widget-header [class*=" icon-"] {
|
391
|
+
|
392
|
+
display: inline-block;
|
393
|
+
margin-left: 13px;
|
394
|
+
margin-right: -2px;
|
395
|
+
|
396
|
+
font-size: 16px;
|
397
|
+
color: #555;
|
398
|
+
vertical-align: middle;
|
399
|
+
|
400
|
+
|
401
|
+
|
402
|
+
}
|
403
|
+
|
404
|
+
|
405
|
+
|
406
|
+
|
407
|
+
.widget-content {
|
408
|
+
padding: 20px 15px 15px;
|
409
|
+
|
410
|
+
background: #FFF;
|
411
|
+
|
412
|
+
|
413
|
+
border: 1px solid #D5D5D5;
|
414
|
+
|
415
|
+
-moz-border-radius: 5px;
|
416
|
+
-webkit-border-radius: 5px;
|
417
|
+
border-radius: 5px;
|
418
|
+
}
|
419
|
+
|
420
|
+
.widget-header+.widget-content {
|
421
|
+
border-top: none;
|
422
|
+
|
423
|
+
-webkit-border-top-left-radius: 0;
|
424
|
+
-webkit-border-top-right-radius: 0;
|
425
|
+
-moz-border-radius-topleft: 0;
|
426
|
+
-moz-border-radius-topright: 0;
|
427
|
+
border-top-left-radius: 0;
|
428
|
+
border-top-right-radius: 0;
|
429
|
+
}
|
430
|
+
|
431
|
+
.widget-nopad .widget-content {
|
432
|
+
padding: 0;
|
433
|
+
}
|
434
|
+
|
435
|
+
/* Widget Content Clearfix */
|
436
|
+
.widget-content:before,
|
437
|
+
.widget-content:after {
|
438
|
+
content:"";
|
439
|
+
display:table;
|
440
|
+
}
|
441
|
+
|
442
|
+
.widget-content:after {
|
443
|
+
clear:both;
|
444
|
+
}
|
445
|
+
|
446
|
+
/* For IE 6/7 (trigger hasLayout) */
|
447
|
+
.widget-content {
|
448
|
+
zoom:1;
|
449
|
+
}
|
450
|
+
|
451
|
+
/* Widget Table */
|
452
|
+
|
453
|
+
.widget-table .widget-content {
|
454
|
+
padding: 0;
|
455
|
+
}
|
456
|
+
|
457
|
+
.widget-table .table {
|
458
|
+
margin-bottom: 0;
|
459
|
+
|
460
|
+
border: none;
|
461
|
+
}
|
462
|
+
|
463
|
+
.widget-table .table tr td:first-child {
|
464
|
+
border-left: none;
|
465
|
+
}
|
466
|
+
|
467
|
+
.widget-table .table tr th:first-child {
|
468
|
+
border-left: none;
|
469
|
+
}
|
470
|
+
|
471
|
+
|
472
|
+
/* Widget Plain */
|
473
|
+
|
474
|
+
.widget-plain {
|
475
|
+
|
476
|
+
background: transparent;
|
477
|
+
|
478
|
+
border: none;
|
479
|
+
}
|
480
|
+
|
481
|
+
.widget-plain .widget-content {
|
482
|
+
padding: 0;
|
483
|
+
|
484
|
+
background: transparent;
|
485
|
+
|
486
|
+
border: none;
|
487
|
+
}
|
488
|
+
|
489
|
+
|
490
|
+
/* Widget Box */
|
491
|
+
|
492
|
+
.widget-box {
|
493
|
+
|
494
|
+
}
|
495
|
+
|
496
|
+
.widget-box .widget-content {
|
497
|
+
background: #E3E3E3;
|
498
|
+
background: #FFF;
|
499
|
+
}
|
500
|
+
|
501
|
+
|
502
|
+
|
503
|
+
|
504
|
+
/*------------------------------------------------------------------
|
505
|
+
[7. Error / .error-container]
|
506
|
+
*/
|
507
|
+
|
508
|
+
.error-container {
|
509
|
+
margin-top: 4em;
|
510
|
+
margin-bottom: 4em;
|
511
|
+
text-align: center;
|
512
|
+
}
|
513
|
+
|
514
|
+
.error-container h1 {
|
515
|
+
margin-bottom: .5em;
|
516
|
+
|
517
|
+
font-size: 120px;
|
518
|
+
line-height: 1em;
|
519
|
+
}
|
520
|
+
|
521
|
+
.error-container h2 {
|
522
|
+
margin-bottom: .75em;
|
523
|
+
font-size: 28px;
|
524
|
+
}
|
525
|
+
|
526
|
+
.error-container .error-details {
|
527
|
+
margin-bottom: 1.5em;
|
528
|
+
|
529
|
+
font-size: 16px;
|
530
|
+
}
|
531
|
+
|
532
|
+
.error-container .error-actions a {
|
533
|
+
margin: 0 .5em;
|
534
|
+
}
|
535
|
+
|
536
|
+
|
537
|
+
|
538
|
+
/* Message layout */
|
539
|
+
|
540
|
+
|
541
|
+
ul.messages_layout {
|
542
|
+
position: relative;
|
543
|
+
margin: 0;
|
544
|
+
padding: 0
|
545
|
+
}
|
546
|
+
ul.messages_layout li {
|
547
|
+
float: left;
|
548
|
+
list-style: none;
|
549
|
+
position: relative
|
550
|
+
}
|
551
|
+
ul.messages_layout li.left {
|
552
|
+
padding-left: 75px
|
553
|
+
}
|
554
|
+
ul.messages_layout li.right {
|
555
|
+
padding-right: 75px
|
556
|
+
}
|
557
|
+
ul.messages_layout li.right .avatar {
|
558
|
+
right: 0;
|
559
|
+
left: auto
|
560
|
+
}
|
561
|
+
ul.messages_layout li.right .message_wrap .arrow {
|
562
|
+
right: -12px;
|
563
|
+
left: auto;
|
564
|
+
background-position: 0 -213px;
|
565
|
+
height: 15px;
|
566
|
+
width: 12px
|
567
|
+
}
|
568
|
+
ul.messages_layout li.by_myself .message_wrap {
|
569
|
+
border: 1px solid #b3cdf8
|
570
|
+
}
|
571
|
+
ul.messages_layout li.by_myself .message_wrap .info a.name {
|
572
|
+
color: #4a8cf7
|
573
|
+
}
|
574
|
+
ul.messages_layout li a.avatar {
|
575
|
+
position: absolute;
|
576
|
+
left: 0;
|
577
|
+
top: 0
|
578
|
+
}
|
579
|
+
ul.messages_layout li a.avatar img {
|
580
|
+
-webkit-border-radius: 5px;
|
581
|
+
-moz-border-radius: 5px;
|
582
|
+
border-radius: 5px
|
583
|
+
}
|
584
|
+
ul.messages_layout li .message_wrap {
|
585
|
+
-webkit-border-radius: 3px;
|
586
|
+
-moz-border-radius: 3px;
|
587
|
+
border-radius: 3px;
|
588
|
+
position: relative;
|
589
|
+
border: 1px solid #e9e9e9;
|
590
|
+
padding: 10px;
|
591
|
+
border: 1px solid #cbcbcb;
|
592
|
+
margin-bottom: 20px;
|
593
|
+
float: left;
|
594
|
+
background: #fefefe;
|
595
|
+
-webkit-box-shadow: rgba(0,0,0,0.1) 0 1px 0px;
|
596
|
+
-moz-box-shadow: rgba(0,0,0,0.1) 0 1px 0px;
|
597
|
+
box-shadow: rgba(0,0,0,0.1) 0 1px 0px
|
598
|
+
}
|
599
|
+
ul.messages_layout li .message_wrap .arrow {
|
600
|
+
background-position: 0 -228px;
|
601
|
+
height: 15px;
|
602
|
+
width: 12px;
|
603
|
+
height: 15px;
|
604
|
+
width: 12px;
|
605
|
+
position: absolute;
|
606
|
+
left: -12px;
|
607
|
+
top: 13px
|
608
|
+
}
|
609
|
+
ul.messages_layout li .message_wrap .info {
|
610
|
+
float: left;
|
611
|
+
width: 100%;
|
612
|
+
border-bottom: 1px solid #fff;
|
613
|
+
line-height: 23px
|
614
|
+
}
|
615
|
+
ul.messages_layout li .message_wrap .info .name {
|
616
|
+
float: left;
|
617
|
+
font-weight: bold;
|
618
|
+
color: #483734
|
619
|
+
}
|
620
|
+
ul.messages_layout li .message_wrap .info .time {
|
621
|
+
float: left;
|
622
|
+
font-size: 11px;
|
623
|
+
margin-left: 6px
|
624
|
+
}
|
625
|
+
ul.messages_layout li .message_wrap .text {
|
626
|
+
float: left;
|
627
|
+
width: 100%;
|
628
|
+
border-top: 1px solid #cfcfcf;
|
629
|
+
padding-top: 5px
|
630
|
+
}
|
631
|
+
|
632
|
+
ul.messages_layout .dropdown-menu li{ width:100%; font-size:11px;}
|
633
|
+
|
634
|
+
|
635
|
+
/* Full Calendar */
|
636
|
+
|
637
|
+
.fc {
|
638
|
+
direction: ltr;
|
639
|
+
text-align: left;
|
640
|
+
position: relative
|
641
|
+
}
|
642
|
+
.fc table {
|
643
|
+
border-collapse: collapse;
|
644
|
+
border-spacing: 0
|
645
|
+
}
|
646
|
+
html .fc, .fc table {
|
647
|
+
font-size: 1em
|
648
|
+
}
|
649
|
+
.fc td, .fc th {
|
650
|
+
padding: 0;
|
651
|
+
vertical-align: top
|
652
|
+
}
|
653
|
+
.fc-header td {
|
654
|
+
white-space: nowrap;
|
655
|
+
background: none
|
656
|
+
}
|
657
|
+
.fc-header-left {
|
658
|
+
width: 100%;
|
659
|
+
text-align: left;
|
660
|
+
position: absolute;
|
661
|
+
left: 0;
|
662
|
+
top: 6px
|
663
|
+
}
|
664
|
+
.fc-header-left .fc-button {
|
665
|
+
margin: 0;
|
666
|
+
position: relative
|
667
|
+
}
|
668
|
+
.fc-header-left .fc-button-prev, .fc-header-left .fc-button-next {
|
669
|
+
float: left;
|
670
|
+
border: none;
|
671
|
+
padding: 14px 10px;
|
672
|
+
opacity: 0.5
|
673
|
+
}
|
674
|
+
.fc-header-left .fc-button-prev .fc-button-inner, .fc-header-left .fc-button-next .fc-button-inner {
|
675
|
+
border: none
|
676
|
+
}
|
677
|
+
.fc-header-left .fc-button-prev .fc-button-inner .fc-button-content, .fc-header-left .fc-button-next .fc-button-inner .fc-button-content {
|
678
|
+
display: none
|
679
|
+
}
|
680
|
+
.fc-header-left .fc-button-prev.fc-state-hover, .fc-header-left .fc-button-next.fc-state-hover {
|
681
|
+
opacity: 1
|
682
|
+
}
|
683
|
+
.fc-header-left .fc-button-prev.fc-state-down, .fc-header-left .fc-button-next.fc-state-down {
|
684
|
+
background: none !important;
|
685
|
+
margin-top: -1px
|
686
|
+
}
|
687
|
+
.fc-header-left .fc-button-prev .fc-button-inner {
|
688
|
+
background-position: 0 -351px;
|
689
|
+
height: 16px;
|
690
|
+
width: 11px
|
691
|
+
}
|
692
|
+
.fc-header-left .fc-button-next {
|
693
|
+
float: right
|
694
|
+
}
|
695
|
+
.fc-header-left .fc-button-next .fc-button-inner {
|
696
|
+
background-position: 0 -367px;
|
697
|
+
height: 16px;
|
698
|
+
width: 11px
|
699
|
+
}
|
700
|
+
.fc-header-center {
|
701
|
+
text-align: center
|
702
|
+
}
|
703
|
+
.fc-header-right {
|
704
|
+
text-align: right;
|
705
|
+
position: absolute;
|
706
|
+
top: -34px;
|
707
|
+
right: 10px
|
708
|
+
}
|
709
|
+
.fc-header-title {
|
710
|
+
display: inline-block;
|
711
|
+
vertical-align: top
|
712
|
+
}
|
713
|
+
.fc-header-title h2 {
|
714
|
+
margin-top: 0;
|
715
|
+
white-space: nowrap;
|
716
|
+
font-size: 1.1rem;
|
717
|
+
color: #6C737F;
|
718
|
+
line-height: 55px;
|
719
|
+
}
|
720
|
+
.fc .fc-header-space {
|
721
|
+
padding-left: 10px
|
722
|
+
}
|
723
|
+
.fc-header .fc-button {
|
724
|
+
margin-bottom: 1em;
|
725
|
+
vertical-align: top
|
726
|
+
}
|
727
|
+
.fc-header .fc-button {
|
728
|
+
margin-right: -1px
|
729
|
+
}
|
730
|
+
.fc-header .fc-corner-right {
|
731
|
+
margin-right: 1px
|
732
|
+
}
|
733
|
+
.fc-header .ui-corner-right {
|
734
|
+
margin-right: 0
|
735
|
+
}
|
736
|
+
.fc-header .fc-state-hover, .fc-header .ui-state-hover {
|
737
|
+
z-index: 2
|
738
|
+
}
|
739
|
+
.fc-header .fc-state-down {
|
740
|
+
z-index: 3
|
741
|
+
}
|
742
|
+
.fc-header .fc-state-active, .fc-header .ui-state-active {
|
743
|
+
z-index: 4
|
744
|
+
}
|
745
|
+
.fc-content {
|
746
|
+
clear: both;
|
747
|
+
background: #f9f9f9
|
748
|
+
}
|
749
|
+
.fc-view {
|
750
|
+
width: 100%;
|
751
|
+
overflow: hidden
|
752
|
+
}
|
753
|
+
.fc-view thead {
|
754
|
+
background:#e9ecf1;
|
755
|
+
line-height: 35px
|
756
|
+
}
|
757
|
+
.fc-widget-header, .fc-widget-content {
|
758
|
+
border: 1px solid #ccc
|
759
|
+
}
|
760
|
+
.fc-state-highlight {
|
761
|
+
background: #F4F3E6
|
762
|
+
}
|
763
|
+
.fc-cell-overlay {
|
764
|
+
background: #9cf;
|
765
|
+
opacity: .2;
|
766
|
+
filter: alpha(opacity=20)
|
767
|
+
}
|
768
|
+
.fc-button {
|
769
|
+
position: relative;
|
770
|
+
display: inline-block;
|
771
|
+
cursor: pointer
|
772
|
+
}
|
773
|
+
.fc-button-today{margin-top: 8px !important;}
|
774
|
+
.fc-state-default {
|
775
|
+
border-style: solid;
|
776
|
+
border-width: 1px 0
|
777
|
+
}
|
778
|
+
.fc-button-inner {
|
779
|
+
position: relative;
|
780
|
+
float: left;
|
781
|
+
overflow: hidden
|
782
|
+
}
|
783
|
+
.fc-state-default .fc-button-inner {
|
784
|
+
border-style: solid;
|
785
|
+
border-width: 0 1px
|
786
|
+
}
|
787
|
+
.fc-button-content {
|
788
|
+
position: relative;
|
789
|
+
float: left;
|
790
|
+
height: 1.9em;
|
791
|
+
line-height: 1.9em;
|
792
|
+
padding: 0 .6em;
|
793
|
+
white-space: nowrap
|
794
|
+
}
|
795
|
+
.fc-button-content .fc-icon-wrap {
|
796
|
+
position: relative;
|
797
|
+
float: left;
|
798
|
+
top: 50%
|
799
|
+
}
|
800
|
+
.fc-button-content .ui-icon {
|
801
|
+
position: relative;
|
802
|
+
float: left;
|
803
|
+
margin-top: -50%;
|
804
|
+
*margin-top:0;
|
805
|
+
*top:-50%
|
806
|
+
}
|
807
|
+
.fc-state-default .fc-button-effect {
|
808
|
+
position: absolute;
|
809
|
+
top: 50%;
|
810
|
+
left: 0
|
811
|
+
}
|
812
|
+
.fc-state-default .fc-button-effect span {
|
813
|
+
position: absolute;
|
814
|
+
top: -100px;
|
815
|
+
left: 0;
|
816
|
+
width: 500px;
|
817
|
+
height: 100px;
|
818
|
+
border-width: 100px 0 0 1px;
|
819
|
+
border-style: solid;
|
820
|
+
border-color: #fff;
|
821
|
+
background: #444;
|
822
|
+
opacity: .09;
|
823
|
+
filter: alpha(opacity=9)
|
824
|
+
}
|
825
|
+
.fc-state-default, .fc-state-default .fc-button-inner {
|
826
|
+
border-style: solid;
|
827
|
+
border-color: #ccc #bbb #aaa;
|
828
|
+
color: #000
|
829
|
+
}
|
830
|
+
.fc-state-hover, .fc-state-hover .fc-button-inner {
|
831
|
+
border-color: #999
|
832
|
+
}
|
833
|
+
.fc-state-down {
|
834
|
+
border-color: #555;
|
835
|
+
background: #777
|
836
|
+
}
|
837
|
+
.fc-state-active, .fc-state-active .fc-button-inner {
|
838
|
+
border-color: #555;
|
839
|
+
background: #777;
|
840
|
+
color: #fff
|
841
|
+
}
|
842
|
+
.fc-state-disabled, .fc-state-disabled .fc-button-inner {
|
843
|
+
color: #999;
|
844
|
+
border-color: #ddd
|
845
|
+
}
|
846
|
+
.fc-state-disabled {
|
847
|
+
cursor: default
|
848
|
+
}
|
849
|
+
.fc-state-disabled .fc-button-effect {
|
850
|
+
display: none
|
851
|
+
}
|
852
|
+
.fc-event {
|
853
|
+
border-style: solid;
|
854
|
+
border-width: 0;
|
855
|
+
font-size: .85em;
|
856
|
+
cursor: default
|
857
|
+
}
|
858
|
+
a.fc-event, .fc-event-draggable {
|
859
|
+
cursor: pointer
|
860
|
+
}
|
861
|
+
a.fc-event {
|
862
|
+
text-decoration: none
|
863
|
+
}
|
864
|
+
.fc-rtl .fc-event {
|
865
|
+
text-align: right
|
866
|
+
}
|
867
|
+
.fc-event-skin {
|
868
|
+
border-color: #3f85f5;
|
869
|
+
background-color: #5e96ea;
|
870
|
+
color: #fff
|
871
|
+
}
|
872
|
+
.fc-event-inner {
|
873
|
+
position: relative;
|
874
|
+
width: 100%;
|
875
|
+
height: 100%;
|
876
|
+
border-style: solid;
|
877
|
+
border-width: 0;
|
878
|
+
overflow: hidden
|
879
|
+
}
|
880
|
+
.fc-event-time, .fc-event-title {
|
881
|
+
padding: 0 1px
|
882
|
+
}
|
883
|
+
.fc .ui-resizable-handle {
|
884
|
+
display: block;
|
885
|
+
position: absolute;
|
886
|
+
z-index: 99999;
|
887
|
+
overflow: hidden;
|
888
|
+
font-size: 300%;
|
889
|
+
line-height: 50%
|
890
|
+
}
|
891
|
+
.fc-event-hori {
|
892
|
+
border-width: 1px 0;
|
893
|
+
margin-bottom: 1px
|
894
|
+
}
|
895
|
+
.fc-event-hori .ui-resizable-e {
|
896
|
+
top: 0 !important;
|
897
|
+
right: -3px !important;
|
898
|
+
width: 7px !important;
|
899
|
+
height: 100% !important;
|
900
|
+
cursor: e-resize
|
901
|
+
}
|
902
|
+
.fc-event-hori .ui-resizable-w {
|
903
|
+
top: 0 !important;
|
904
|
+
left: -3px !important;
|
905
|
+
width: 7px !important;
|
906
|
+
height: 100% !important;
|
907
|
+
cursor: w-resize
|
908
|
+
}
|
909
|
+
.fc-event-hori .ui-resizable-handle {
|
910
|
+
_padding-bottom: 14px
|
911
|
+
}
|
912
|
+
.fc-corner-left {
|
913
|
+
margin-left: 1px
|
914
|
+
}
|
915
|
+
.fc-corner-left .fc-button-inner, .fc-corner-left .fc-event-inner {
|
916
|
+
margin-left: -1px
|
917
|
+
}
|
918
|
+
.fc-corner-right {
|
919
|
+
margin-right: 1px
|
920
|
+
}
|
921
|
+
.fc-corner-right .fc-button-inner, .fc-corner-right .fc-event-inner {
|
922
|
+
margin-right: -1px
|
923
|
+
}
|
924
|
+
.fc-corner-top {
|
925
|
+
margin-top: 1px
|
926
|
+
}
|
927
|
+
.fc-corner-top .fc-event-inner {
|
928
|
+
margin-top: -1px
|
929
|
+
}
|
930
|
+
.fc-corner-bottom {
|
931
|
+
margin-bottom: 1px
|
932
|
+
}
|
933
|
+
.fc-corner-bottom .fc-event-inner {
|
934
|
+
margin-bottom: -1px
|
935
|
+
}
|
936
|
+
.fc-corner-left .fc-event-inner {
|
937
|
+
border-left-width: 1px
|
938
|
+
}
|
939
|
+
.fc-corner-right .fc-event-inner {
|
940
|
+
border-right-width: 1px
|
941
|
+
}
|
942
|
+
.fc-corner-top .fc-event-inner {
|
943
|
+
border-top-width: 1px
|
944
|
+
}
|
945
|
+
.fc-corner-bottom .fc-event-inner {
|
946
|
+
border-bottom-width: 1px
|
947
|
+
}
|
948
|
+
table.fc-border-separate {
|
949
|
+
border-collapse: separate
|
950
|
+
}
|
951
|
+
.fc-border-separate th, .fc-border-separate td {
|
952
|
+
border-width: 1px 0 0 1px
|
953
|
+
}
|
954
|
+
.fc-border-separate th.fc-last, .fc-border-separate td.fc-last {
|
955
|
+
border-right-width: 1px
|
956
|
+
}
|
957
|
+
.fc-border-separate tr.fc-last th, .fc-border-separate tr.fc-last td {
|
958
|
+
border-bottom-width: 0px
|
959
|
+
}
|
960
|
+
.fc-first {
|
961
|
+
border-left-width: 0 !important
|
962
|
+
}
|
963
|
+
.fc-last {
|
964
|
+
border-right-width: 0 !important
|
965
|
+
}
|
966
|
+
.fc-grid th {
|
967
|
+
text-align: center
|
968
|
+
}
|
969
|
+
.fc-grid .fc-day-number {
|
970
|
+
float: right;
|
971
|
+
padding: 0 2px
|
972
|
+
}
|
973
|
+
.fc-grid .fc-other-month .fc-day-number {
|
974
|
+
opacity: 0.3;
|
975
|
+
filter: alpha(opacity=30)
|
976
|
+
}
|
977
|
+
.fc-grid .fc-day-content {
|
978
|
+
clear: both;
|
979
|
+
padding: 2px 2px 1px
|
980
|
+
}
|
981
|
+
.fc-grid .fc-event-time {
|
982
|
+
font-weight: bold
|
983
|
+
}
|
984
|
+
.fc-rtl .fc-grid .fc-day-number {
|
985
|
+
float: left
|
986
|
+
}
|
987
|
+
.fc-rtl .fc-grid .fc-event-time {
|
988
|
+
float: right
|
989
|
+
}
|
990
|
+
.fc-agenda table {
|
991
|
+
border-collapse: separate
|
992
|
+
}
|
993
|
+
.fc-agenda-days th {
|
994
|
+
text-align: center
|
995
|
+
}
|
996
|
+
.fc-agenda .fc-agenda-axis {
|
997
|
+
width: 60px !important;
|
998
|
+
padding: 0 4px;
|
999
|
+
vertical-align: middle;
|
1000
|
+
text-align: right;
|
1001
|
+
white-space: nowrap;
|
1002
|
+
font-weight: normal
|
1003
|
+
}
|
1004
|
+
.fc-agenda .fc-day-content {
|
1005
|
+
padding: 2px 2px 1px
|
1006
|
+
}
|
1007
|
+
.fc-agenda-days .fc-agenda-axis {
|
1008
|
+
border-right-width: 1px
|
1009
|
+
}
|
1010
|
+
.fc-agenda-days .fc-col0 {
|
1011
|
+
border-left-width: 0
|
1012
|
+
}
|
1013
|
+
.fc-agenda-allday th {
|
1014
|
+
border-width: 0 1px
|
1015
|
+
}
|
1016
|
+
.fc-agenda-allday .fc-day-content {
|
1017
|
+
min-height: 34px;
|
1018
|
+
_height: 34px
|
1019
|
+
}
|
1020
|
+
.fc-agenda-divider-inner {
|
1021
|
+
height: 2px;
|
1022
|
+
overflow: hidden
|
1023
|
+
}
|
1024
|
+
.fc-widget-header .fc-agenda-divider-inner {
|
1025
|
+
background: #eee
|
1026
|
+
}
|
1027
|
+
.fc-agenda-slots th {
|
1028
|
+
border-width: 1px 1px 0
|
1029
|
+
}
|
1030
|
+
.fc-agenda-slots td {
|
1031
|
+
border-width: 1px 0 0;
|
1032
|
+
background: none
|
1033
|
+
}
|
1034
|
+
.fc-agenda-slots td div {
|
1035
|
+
height: 20px
|
1036
|
+
}
|
1037
|
+
.fc-agenda-slots tr.fc-slot0 th, .fc-agenda-slots tr.fc-slot0 td {
|
1038
|
+
border-top-width: 0
|
1039
|
+
}
|
1040
|
+
.fc-agenda-slots tr.fc-minor th, .fc-agenda-slots tr.fc-minor td {
|
1041
|
+
border-top-style: dotted
|
1042
|
+
}
|
1043
|
+
.fc-agenda-slots tr.fc-minor th.ui-widget-header {
|
1044
|
+
*border-top-style:solid
|
1045
|
+
}
|
1046
|
+
.fc-event-vert {
|
1047
|
+
border-width: 0 1px
|
1048
|
+
}
|
1049
|
+
.fc-event-vert .fc-event-head, .fc-event-vert .fc-event-content {
|
1050
|
+
position: relative;
|
1051
|
+
z-index: 2;
|
1052
|
+
width: 100%;
|
1053
|
+
overflow: hidden
|
1054
|
+
}
|
1055
|
+
.fc-event-vert .fc-event-time {
|
1056
|
+
white-space: nowrap;
|
1057
|
+
font-size: 10px
|
1058
|
+
}
|
1059
|
+
.fc-event-vert .fc-event-bg {
|
1060
|
+
position: absolute;
|
1061
|
+
z-index: 1;
|
1062
|
+
top: 0;
|
1063
|
+
left: 0;
|
1064
|
+
width: 100%;
|
1065
|
+
height: 100%;
|
1066
|
+
background: #fff;
|
1067
|
+
opacity: .3;
|
1068
|
+
filter: alpha(opacity=30)
|
1069
|
+
}
|
1070
|
+
.fc .ui-draggable-dragging .fc-event-bg, .fc-select-helper .fc-event-bg {
|
1071
|
+
display: none\9
|
1072
|
+
}
|
1073
|
+
.fc-event-vert .ui-resizable-s {
|
1074
|
+
bottom: 0 !important;
|
1075
|
+
width: 100% !important;
|
1076
|
+
height: 8px !important;
|
1077
|
+
overflow: hidden !important;
|
1078
|
+
line-height: 8px !important;
|
1079
|
+
font-size: 11px !important;
|
1080
|
+
font-family: monospace;
|
1081
|
+
text-align: center;
|
1082
|
+
cursor: s-resize
|
1083
|
+
}
|
1084
|
+
.fc-agenda .ui-resizable-resizing {
|
1085
|
+
_overflow: hidden
|
1086
|
+
}
|
1087
|
+
.fc-header-left .fc-button-prev .fc-button-inner {background: url('../img/icons-sa7c41345d9.png') no-repeat; background-position: 0 -351px;
|
1088
|
+
height: 16px;
|
1089
|
+
width: 11px;}
|
1090
|
+
|
1091
|
+
.fc-header-left .fc-button-next .fc-button-inner {background: url('../img/icons-sa7c41345d9.png') no-repeat; background-position: 0 -367px;
|
1092
|
+
height: 16px;
|
1093
|
+
width: 11px;}
|
1094
|
+
|
1095
|
+
/*------------------------------------------------------------------
|
1096
|
+
[8. Miscellaneous]
|
1097
|
+
*/
|
1098
|
+
|
1099
|
+
.chart-holder {
|
1100
|
+
width: 100%;
|
1101
|
+
height: 250px;
|
1102
|
+
}
|
1103
|
+
|
1104
|
+
.dropdown-menu li>a:hover, .dropdown-menu .active>a, .dropdown-menu .active>a:hover { background:#00ba8b;}
|
1105
|
+
|
1106
|
+
.accordion-heading { background:#e5e5e5; }
|
1107
|
+
.accordion-heading a { color:#545454; text-decoration:none; font-weight:bold; }
|
1108
|
+
|
1109
|
+
.btn-facebook-alt i {
|
1110
|
+
color: #23386a;
|
1111
|
+
}
|
1112
|
+
.btn-twitter-alt i {
|
1113
|
+
color: #0098d0;
|
1114
|
+
}
|
1115
|
+
.btn-google-alt i {
|
1116
|
+
color: #b6362d;
|
1117
|
+
}
|
1118
|
+
.btn-linkedin-alt i {
|
1119
|
+
color: #0073b2;
|
1120
|
+
}
|
1121
|
+
.btn-pinterest-alt i {
|
1122
|
+
color: #ab171e;
|
1123
|
+
}
|
1124
|
+
.btn-github-alt i {
|
1125
|
+
color: #333;
|
1126
|
+
}
|
1127
|
+
|
1128
|
+
.all-icons li { list-style:none;}
|
1129
|
+
|
1130
|
+
.ML0 { margin-left:0}
|
1131
|
+
.MR0 { margin-right:0;}
|
1132
|
+
|
1133
|
+
|
1134
|
+
|
1135
|
+
/*------------------------------------------------------------------
|
1136
|
+
[1. Max Width: 480px]
|
1137
|
+
*/
|
1138
|
+
|
1139
|
+
@media (max-width: 480px) {
|
1140
|
+
|
1141
|
+
.error-container h1 {
|
1142
|
+
font-size: 72px;
|
1143
|
+
}
|
1144
|
+
|
1145
|
+
}
|
1146
|
+
|
1147
|
+
|
1148
|
+
|
1149
|
+
|
1150
|
+
|
1151
|
+
/*------------------------------------------------------------------
|
1152
|
+
[1. Max Width: 767px]
|
1153
|
+
*/
|
1154
|
+
|
1155
|
+
@media (max-width: 767px) {
|
1156
|
+
|
1157
|
+
#main {
|
1158
|
+
padding: 0 10px;
|
1159
|
+
margin-right: -20px;
|
1160
|
+
margin-left: -20px;
|
1161
|
+
}
|
1162
|
+
|
1163
|
+
|
1164
|
+
.subnavbar {
|
1165
|
+
margin-left: -20px;
|
1166
|
+
margin-right: -20px;
|
1167
|
+
}
|
1168
|
+
|
1169
|
+
|
1170
|
+
.subnavbar-inner {
|
1171
|
+
height: auto;
|
1172
|
+
}
|
1173
|
+
|
1174
|
+
.subnavbar .container > ul {
|
1175
|
+
width: 100%;
|
1176
|
+
height: auto;
|
1177
|
+
|
1178
|
+
border: none;
|
1179
|
+
}
|
1180
|
+
|
1181
|
+
.subnavbar .container > ul > li {
|
1182
|
+
width: 33%;
|
1183
|
+
height: 70px;
|
1184
|
+
margin-bottom: 0;
|
1185
|
+
|
1186
|
+
border: none;
|
1187
|
+
}
|
1188
|
+
|
1189
|
+
|
1190
|
+
|
1191
|
+
.subnavbar .container > ul > li.active > a {
|
1192
|
+
font-size: 11px;
|
1193
|
+
background: transparent;
|
1194
|
+
}
|
1195
|
+
|
1196
|
+
.subnavbar .container > ul > li > a > i {
|
1197
|
+
display: inline-block;
|
1198
|
+
margin-bottom: 0;
|
1199
|
+
|
1200
|
+
font-size: 20px;
|
1201
|
+
}
|
1202
|
+
|
1203
|
+
|
1204
|
+
.subnavbar-open-right .dropdown-menu {
|
1205
|
+
left: auto;
|
1206
|
+
right: 0;
|
1207
|
+
}
|
1208
|
+
|
1209
|
+
.subnavbar-open-right .dropdown-menu:before {
|
1210
|
+
left: auto;
|
1211
|
+
right: 12px;
|
1212
|
+
}
|
1213
|
+
.subnavbar-open-right .dropdown-menu:after {
|
1214
|
+
left: auto;
|
1215
|
+
right: 13px;
|
1216
|
+
}
|
1217
|
+
|
1218
|
+
.extra {
|
1219
|
+
margin-right: -20px;
|
1220
|
+
margin-left: -20px;
|
1221
|
+
}
|
1222
|
+
|
1223
|
+
.extra .container {
|
1224
|
+
padding: 0 20px;
|
1225
|
+
}
|
1226
|
+
|
1227
|
+
.footer {
|
1228
|
+
margin-right: -20px;
|
1229
|
+
margin-left: -20px;
|
1230
|
+
}
|
1231
|
+
|
1232
|
+
.footer .container {
|
1233
|
+
padding: 0 20px;
|
1234
|
+
}
|
1235
|
+
|
1236
|
+
.footer .footer-terms {
|
1237
|
+
text-align: left;
|
1238
|
+
}
|
1239
|
+
|
1240
|
+
.footer .footer-terms a {
|
1241
|
+
margin-left: 0;
|
1242
|
+
margin-right: 1em;
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
}
|
1246
|
+
|
1247
|
+
|
1248
|
+
|
1249
|
+
|
1250
|
+
|
1251
|
+
/*------------------------------------------------------------------
|
1252
|
+
[3. Max Width: 979px]
|
1253
|
+
*/
|
1254
|
+
|
1255
|
+
@media (max-width: 979px) {
|
1256
|
+
|
1257
|
+
.navbar-fixed-top {
|
1258
|
+
position: static;
|
1259
|
+
|
1260
|
+
margin-bottom: 0;
|
1261
|
+
}
|
1262
|
+
|
1263
|
+
.subnavbar {
|
1264
|
+
}
|
1265
|
+
|
1266
|
+
.subnavbar .container {
|
1267
|
+
width: auto;
|
1268
|
+
}
|
1269
|
+
}
|
1270
|
+
|
1271
|
+
|
1272
|
+
|
1273
|
+
|
1274
|
+
|
1275
|
+
|
1276
|
+
/*------------------------------------------------------------------
|
1277
|
+
[2. Max Width: 1200px]
|
1278
|
+
*/
|
1279
|
+
|
1280
|
+
@media (min-width: 1200px) {
|
1281
|
+
.navbar .search-query {
|
1282
|
+
width: 200px;
|
1283
|
+
}
|
1284
|
+
|
1285
|
+
}
|
1286
|
+
|