sublime_video_layout 2.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (106) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +21 -0
  4. data/Rakefile +29 -0
  5. data/app/assets/fonts/SublimeIcons.eot +0 -0
  6. data/app/assets/fonts/SublimeIcons.svg +34 -0
  7. data/app/assets/fonts/SublimeIcons.ttf +0 -0
  8. data/app/assets/fonts/SublimeIcons.woff +0 -0
  9. data/app/assets/images/back_texture_my.png +0 -0
  10. data/app/assets/images/close_popup.png +0 -0
  11. data/app/assets/images/custom_checkbox.png +0 -0
  12. data/app/assets/images/custom_radio.png +0 -0
  13. data/app/assets/images/custom_select.png +0 -0
  14. data/app/assets/images/dm_banner.png +0 -0
  15. data/app/assets/images/dm_banner_bg.png +0 -0
  16. data/app/assets/images/fields/card_icon.png +0 -0
  17. data/app/assets/images/fields/domain_icon.png +0 -0
  18. data/app/assets/images/fields/email_icon.png +0 -0
  19. data/app/assets/images/fields/password_icon.png +0 -0
  20. data/app/assets/images/fields/path_icon.png +0 -0
  21. data/app/assets/images/fields/ticket_icon.png +0 -0
  22. data/app/assets/images/fields/user_icon.png +0 -0
  23. data/app/assets/images/fields/valid_icon.png +0 -0
  24. data/app/assets/images/footer_break.png +0 -0
  25. data/app/assets/images/footer_texture.png +0 -0
  26. data/app/assets/images/header_back_light.png +0 -0
  27. data/app/assets/images/header_inner_shadow.png +0 -0
  28. data/app/assets/images/header_repeat.jpg +0 -0
  29. data/app/assets/images/header_repeat.png +0 -0
  30. data/app/assets/images/header_repeat_max.jpg +0 -0
  31. data/app/assets/images/header_repeat_old.png +0 -0
  32. data/app/assets/images/header_signup_btn.png +0 -0
  33. data/app/assets/images/header_stars.png +0 -0
  34. data/app/assets/images/info_icon.png +0 -0
  35. data/app/assets/images/jilion.png +0 -0
  36. data/app/assets/images/jobs_highlight_note.png +0 -0
  37. data/app/assets/images/logout.png +0 -0
  38. data/app/assets/images/menu_bullet.png +0 -0
  39. data/app/assets/images/menu_bullet_active.png +0 -0
  40. data/app/assets/images/newsletter_btn_arrow.png +0 -0
  41. data/app/assets/images/plans/plays_icon.png +0 -0
  42. data/app/assets/images/plans/ssl_icon.png +0 -0
  43. data/app/assets/images/plans/stats_icon.png +0 -0
  44. data/app/assets/images/plans/support_icon.png +0 -0
  45. data/app/assets/images/popup_break.png +0 -0
  46. data/app/assets/images/popup_sign_up_btn.png +0 -0
  47. data/app/assets/images/sublimevideo_logo.png +0 -0
  48. data/app/assets/images/sublimevideo_logo@2x.png +0 -0
  49. data/app/assets/images/sublimevideo_maintenance.png +0 -0
  50. data/app/assets/images/twitter.png +0 -0
  51. data/app/assets/images/user_header_icon.png +0 -0
  52. data/app/assets/images/user_header_icon_active.png +0 -0
  53. data/app/assets/javascripts/form/password_checker.js.coffee +18 -0
  54. data/app/assets/javascripts/form/pseudo_placeholder.js.coffee +91 -0
  55. data/app/assets/javascripts/form/show_password.js.coffee +91 -0
  56. data/app/assets/javascripts/form/submit_manager.js.coffee +53 -0
  57. data/app/assets/javascripts/media/preloader.js.coffee +30 -0
  58. data/app/assets/javascripts/misc/browser_bugs_fixer.js.coffee +12 -0
  59. data/app/assets/javascripts/misc/cookie.js.coffee +42 -0
  60. data/app/assets/javascripts/misc/utils.js.coffee +17 -0
  61. data/app/assets/javascripts/sublimevideo.js.coffee +66 -0
  62. data/app/assets/javascripts/ui/link.js.coffee +24 -0
  63. data/app/assets/javascripts/ui/menu.js.coffee +36 -0
  64. data/app/assets/javascripts/ui/popup.js.coffee +121 -0
  65. data/app/assets/javascripts/ui/table.js.coffee +8 -0
  66. data/app/assets/javascripts/ui/utils.js.coffee +41 -0
  67. data/app/assets/stylesheets/_css3.scss +41 -0
  68. data/app/assets/stylesheets/ie.css.scss +2 -0
  69. data/app/assets/stylesheets/sublime_icons.css.scss.erb +46 -0
  70. data/app/assets/stylesheets/sublimevideo.css.scss.erb +947 -0
  71. data/app/controllers/maintenance_controller.rb +12 -0
  72. data/app/helpers/sublime_video_layout/engine_helper.rb +111 -0
  73. data/app/views/layouts/_facebook.html.haml +1 -0
  74. data/app/views/layouts/_footer.html.haml +54 -0
  75. data/app/views/layouts/_googleplus.html.haml +7 -0
  76. data/app/views/layouts/_gosquared.html.haml +11 -0
  77. data/app/views/layouts/_header_menu.html.haml +44 -0
  78. data/app/views/layouts/_ie.html.haml +14 -0
  79. data/app/views/layouts/_twitter.html.haml +2 -0
  80. data/app/views/layouts/maintenance.html.erb +79 -0
  81. data/app/views/layouts/sublimevideo.html.haml +61 -0
  82. data/app/views/users/new.html.haml +24 -0
  83. data/app/views/users/sessions/new.html.haml +25 -0
  84. data/config/locales/en.yml +14 -0
  85. data/config/routes.rb +5 -0
  86. data/lib/heroku-pages/error.html +82 -0
  87. data/lib/heroku-pages/maintenance.html +77 -0
  88. data/lib/heroku-pages/sublimevideo_maintenance.png +0 -0
  89. data/lib/rack/maintenance.rb +32 -0
  90. data/lib/site_token.rb +22 -0
  91. data/lib/sublime_video_layout.rb +18 -0
  92. data/lib/sublime_video_layout/version.rb +3 -0
  93. data/lib/tasks/sublime_video_layout_tasks.rake +4 -0
  94. data/public/404.html +28 -0
  95. data/public/404.png +0 -0
  96. data/public/422.html +29 -0
  97. data/public/500.html +28 -0
  98. data/public/500.png +0 -0
  99. data/public/apple-touch-icon-precomposed.png +0 -0
  100. data/public/error.png +0 -0
  101. data/public/errors.css +60 -0
  102. data/public/favicon.ico +0 -0
  103. data/public/robots.txt +5 -0
  104. data/public/sublimevideo.png +0 -0
  105. data/vendor/assets/javascripts/modernizr.js +1265 -0
  106. metadata +203 -0
@@ -0,0 +1,2 @@
1
+ .checkbox_wrap input {margin-top:8px}
2
+ .checkbox_wrap label, .radio_wrap label {background:none}
@@ -0,0 +1,46 @@
1
+ @font-face {
2
+ font-family: 'SublimeIcons';
3
+ src:url(<%= asset_path "SublimeIcons.eot" %>);
4
+ }
5
+ @font-face {
6
+ font-family: 'SublimeIcons';
7
+ src: url(data:application/x-font-woff;charset=utf-8;base64,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) format('woff'),
8
+ url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype');
9
+ font-weight: normal;
10
+ font-style: normal;
11
+ }
12
+
13
+ /* Use the following CSS code if you want to use data attributes for inserting your icons */
14
+ [data-icon]:before {
15
+ font-family: 'SublimeIcons';
16
+ content: attr(data-icon);
17
+ speak: none;
18
+ font-weight: normal;
19
+ -webkit-font-smoothing: antialiased;
20
+ }
21
+
22
+ /* Use the following CSS code if you want to have a class per icon */
23
+ .icon-arrow:before, .icon-arrow-down:before, .icon-mail:before, .icon-checkmark:before, .icon-cancel:before {
24
+ font-family:'SublimeIcons';
25
+ font-style:normal;
26
+ speak:none;
27
+ font-weight: normal;
28
+ -webkit-font-smoothing: antialiased;
29
+ }
30
+ .icon-arrow:before {
31
+ content: "\5b";
32
+ font-size:75%;
33
+ }
34
+ .icon-arrow-down:before {
35
+ content: "\21";
36
+ font-size:25%;
37
+ }
38
+ .icon-mail:before {
39
+ content: "\22";
40
+ }
41
+ .icon-checkmark:before {
42
+ content: "\23";
43
+ }
44
+ .icon-cancel:before {
45
+ content: "\24";
46
+ }
@@ -0,0 +1,947 @@
1
+ /*
2
+ *= require 'sublime_icons'
3
+ */
4
+
5
+ @import "css3";
6
+
7
+ * {
8
+ margin:0;
9
+ padding:0;
10
+ }
11
+
12
+ body {
13
+ font-family:proxima-nova-1,proxima-nova-2, Helvetica, Arial, sans-serif;
14
+ font-size:16px;
15
+ position:relative;
16
+ top:76px;
17
+ text-rendering:optimizeLegibility;
18
+ }
19
+
20
+ #dm_banner {
21
+ position:absolute;
22
+ width:100%;
23
+ height:76px;
24
+ top:-76px;
25
+ left:0;
26
+ right:0;
27
+ background:url(<%= asset_path "dm_banner_bg.png" %>) repeat-x;
28
+ }
29
+
30
+ #dm_banner a {
31
+ display:block;
32
+ margin:0 auto;
33
+ width:569px;
34
+ height:76px;
35
+ background:url(<%= asset_path "dm_banner.png" %>) no-repeat;
36
+ }
37
+
38
+ #dm_banner h2 {
39
+ display:none;
40
+ }
41
+
42
+ header {
43
+ min-width:1000px;
44
+ height:665px;
45
+ background:url(<%= asset_path "header_repeat.png" %>) repeat-x center top;
46
+ }
47
+
48
+ header .lights {
49
+ background:url(<%= asset_path "header_back_light.png" %>) center top no-repeat;
50
+ height:583px;
51
+ }
52
+
53
+ header .shadow {
54
+ height:583px;
55
+ background:url(<%= asset_path "header_inner_shadow.png" %>) bottom repeat-x;
56
+ }
57
+
58
+ header .stars {
59
+ min-height:130px;
60
+ background:url(<%= asset_path "header_stars.png" %>) center top no-repeat;
61
+ }
62
+
63
+ header .wrap {
64
+ width:960px;
65
+ margin:0 auto;
66
+ padding:22px 20px 0;
67
+ position:relative;
68
+ }
69
+
70
+ header h1 a {
71
+ display:block;
72
+ width:382px;
73
+ height:78px;
74
+ background:url(<%= asset_path 'sublimevideo_logo@2x.png' %>) no-repeat;
75
+ background-size:100%;
76
+ position:relative;
77
+ z-index:3;
78
+ }
79
+
80
+ @media \0screen {
81
+ header h1 a {
82
+ background: no-repeat center center fixed;
83
+ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="<%= asset_path 'sublimevideo_logo@2x.png' %>",sizingMethod='scale');
84
+ -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<%= asset_path 'sublimevideo_logo@2x.png' %>', sizingMethod='scale')";
85
+ }
86
+ }
87
+
88
+ header h1 a span {display:none}
89
+
90
+ header h2 {
91
+ color:#c1d3f0;
92
+ font-size:40px;
93
+ font-weight:600;
94
+ text-align:center;
95
+ padding:40px 0;
96
+ text-shadow:#001941 0 1px 4px;
97
+ -webkit-font-smoothing:antialiased;
98
+ }
99
+
100
+ header p.sub {
101
+ font-size:22px;
102
+ color:#afceff;
103
+ line-height:33px;
104
+ text-shadow:rgba(0,0,0,0.8) 0 1px 3px;
105
+ -webkit-font-smoothing:antialiased;
106
+ }
107
+
108
+ header p.sub a {
109
+ color:#e4efff;
110
+ }
111
+
112
+ #menu {
113
+ position:absolute;
114
+ top:50px;
115
+ right:0;
116
+ z-index:3;
117
+ }
118
+
119
+ #menu ul {
120
+ list-style-type:none;
121
+ }
122
+
123
+ #menu li {
124
+ float:left;
125
+ }
126
+
127
+ #menu li.popup_wrap {
128
+ position:relative;
129
+ margin-right:10px;
130
+ }
131
+
132
+ #menu li a, #menu li strong.trigger {
133
+ display:block;
134
+ padding:6px 10px 3px;
135
+ color:#cde5fe;
136
+ font-size:14px;
137
+ text-transform:uppercase;
138
+ letter-spacing:1px;
139
+ border:1px solid transparent;
140
+ text-shadow:#000 0 1px 2px;
141
+ /* font-weight:100;*/
142
+ @include transition(color,0.25s,linear);
143
+ -webkit-font-smoothing:antialiased;
144
+ }
145
+
146
+ #menu li a:hover {
147
+ color:#fff;
148
+ }
149
+
150
+ #menu ul li.active a {
151
+ border-color:#000;
152
+ text-shadow:rgba(0,0,0,0.8) 0 -1px 0;
153
+ @include border-radius(20px);
154
+ @include gradient(#114492, #207ec3, #1a65ae);
155
+ @include box-shadow((inset rgba(0,0,0,0.93) 0 1px 4px, rgba(144,191,255,0.2) 0 1px 0));
156
+ }
157
+
158
+ #menu li a.user {
159
+ text-transform:none;
160
+ letter-spacing:0;
161
+ }
162
+
163
+ #menu li a.user .icon {
164
+ background:url(<%= asset_path "user_header_icon.png" %>) no-repeat 0 2px;
165
+ padding:0 0 0 20px;
166
+ }
167
+
168
+ #menu li.active a.user .icon {
169
+ background:url(<%= asset_path "user_header_icon_active.png" %>) no-repeat 0 2px;
170
+ }
171
+
172
+ #menu li.signup a {
173
+ padding:7px 0 0;
174
+ width:74px;
175
+ height:23px;
176
+ font-size:13px;
177
+ font-weight:500;
178
+ color:#fff;
179
+ text-shadow:#000 0 1px 2px;
180
+ background:url(<%= asset_path "header_signup_btn.png" %>) no-repeat;
181
+ text-align:center;
182
+ -webkit-font-smoothing:subpixel-antialiased;
183
+ }
184
+
185
+ #menu li.signup a:active {background-position:0 -30px}
186
+
187
+ #menu li.logged a {
188
+ font-weight:700;
189
+ }
190
+
191
+ #menu li.logout a {
192
+ padding:0;
193
+ width:15px;
194
+ height:18px;
195
+ margin:5px 0 0 6px;
196
+ background:url(<%= asset_path "logout.png" %>) no-repeat;
197
+ }
198
+
199
+ #menu li.logout span {display:none}
200
+
201
+ #menu li strong.trigger {
202
+ display:inline-block;
203
+ font-weight:normal;
204
+ background:#0d131b;
205
+ padding:6px 6px 5px 8px;
206
+ cursor:pointer;
207
+ @include border-radius(4px);
208
+ }
209
+
210
+ #menu li strong.trigger span.icon-arrow-down {
211
+ position:relative;
212
+ top:-3px;
213
+ }
214
+
215
+ #menu li ul.popup {
216
+ display:none;
217
+ width:170px;
218
+ height:93px;
219
+ position:absolute;
220
+ z-index:999;
221
+ top:30px;
222
+ left:0;
223
+ @include gradient(#27354a,#19212e,#202b3c);
224
+ @include border-radius(4px);
225
+ @include box-shadow((inset #41597c 0 1px 0, #000 0 5px 25px));
226
+ }
227
+
228
+ #menu li.popup_wrap:hover ul.popup {display:block}
229
+
230
+ #menu li ul.popup li {
231
+ float:none;
232
+ display:block;
233
+ height:30px;
234
+ border-top:1px solid #000;
235
+ @include box-shadow(inset rgba(161,195,255,0.16) 0 1px 0);
236
+ }
237
+
238
+ #menu li ul.popup li:first-child {
239
+ border-top:none;
240
+ @include box-shadow(none);
241
+ }
242
+
243
+ #menu li ul.popup li a, #menu li ul.popup li.active a {
244
+ height:20px;
245
+ padding:6px 10px 5px;
246
+ text-transform:none;
247
+ letter-spacing:0;
248
+ font-size:15px;
249
+ font-weight:600;
250
+ text-shadow:rgba(0,0,0,0.7) 0 -1px 0;
251
+ border:none;
252
+ @include border-radius(0);
253
+ @include box-shadow(none);
254
+ @include gradient(transparent,transparent,transparent);
255
+ }
256
+
257
+ #menu li ul.popup li a:hover {
258
+ background:rgba(12,17,25,0.6);
259
+ }
260
+
261
+ #menu li ul.popup li:first-child a {
262
+ @include border-radius(4px 4px 0 0);
263
+ }
264
+
265
+ #menu li ul.popup li:last-child a {
266
+ @include border-radius(0 0 4px 4px);
267
+ }
268
+
269
+ footer {
270
+ min-width:1000px;
271
+ height:331px;
272
+ background:#24334b url(<%= asset_path "footer_texture.png" %>) repeat-x;
273
+ text-shadow:#000 0 -1px 0;
274
+ color:#9eb5ce;
275
+ -webkit-font-smoothing:antialiased;
276
+ }
277
+
278
+ footer a {
279
+ color:#c3daff;
280
+ @include transition(color,0.25s,linear);
281
+ }
282
+
283
+ footer a:hover {color:#fff}
284
+
285
+ footer .wrap {
286
+ width:900px;
287
+ margin:0 auto;
288
+ padding:45px 0 0;
289
+ }
290
+
291
+ footer nav {
292
+ width:500px;
293
+ float:left;
294
+ }
295
+
296
+ footer .col {
297
+ float:left;
298
+ padding:0 16px 40px;
299
+ }
300
+
301
+ footer .col h4 {
302
+ color:#667b9f;
303
+ font-size:16px;
304
+ font-weight:600;
305
+ padding:0 0 12px;
306
+ }
307
+
308
+ footer .col ul {
309
+ list-style-type:none;
310
+ font-size:14px;
311
+ line-height:30px;
312
+ }
313
+
314
+ footer .col li.jobs {
315
+ position:relative;
316
+ }
317
+
318
+ /*footer .col li.jobs span.note {
319
+ display:block;
320
+ width:82px;
321
+ height:45px;
322
+ background:url(<%= asset_path "jobs_highlight_note.png" %>) no-repeat 0;
323
+ position:absolute;
324
+ top:12px;
325
+ left:36px;
326
+ text-indent:250%;
327
+ white-space:nowrap;
328
+ overflow:hidden;
329
+ }*/
330
+
331
+ footer .right {
332
+ float:left;
333
+ font-size:20px;
334
+ padding:0 0 0 40px;
335
+ }
336
+
337
+ footer p.twitter {
338
+ margin:0 0 0;
339
+ padding:4px 0 0 42px;
340
+ background:url(<%= asset_path "twitter.png" %>) no-repeat;
341
+ }
342
+
343
+ footer p.twitter a {
344
+ color:#38ceff;
345
+ }
346
+
347
+ footer .newsletter {
348
+ margin:20px 0 0;
349
+ width:298px;
350
+ }
351
+
352
+ footer .newsletter label {
353
+ display:block;
354
+ color:#667b9f;
355
+ font-size:14px;
356
+ font-weight:600;
357
+ padding:0 0 5px;
358
+
359
+ }
360
+
361
+ footer .newsletter .field_wrap {
362
+ position:relative;
363
+ }
364
+
365
+ footer .newsletter input.field {
366
+ width:276px;
367
+ height:36px;
368
+ background:#f1f6ff;
369
+ text-shadow:rgba(255,255,255,0.2) 0 1px 0;
370
+ border:1px solid #162237;
371
+ font-size:17px;
372
+ font-weight:600;
373
+ font-family:inherit;
374
+ color:#1e3966;
375
+ padding:0 10px;
376
+ @include gradient(#627696,#7d91b1,#6e82a2);
377
+ @include border-radius(5px);
378
+ @include box-shadow((inset rgba(0,0,0,0.6) 0 1px 3px, rgba(255,255,255,0.09) 0 1px 0));
379
+ }
380
+
381
+ footer .newsletter input::-webkit-input-placeholder, footer .newsletter input.field.placeholder {color:#455773}
382
+ footer .newsletter input:-moz-placeholder {color:#455773}
383
+
384
+ footer .newsletter button {
385
+ width:26px;
386
+ height:26px;
387
+ position:absolute;
388
+ top:6px;
389
+ right:6px;
390
+ border: 1px solid #000;
391
+ @include gradient(#2e4263,#1b263a,#253550);
392
+ @include border-radius(3px);
393
+ @include box-shadow((inset #456395 0 1px 0, rgba(0,0,0,0.75) 0 1px 4px));
394
+ }
395
+
396
+ footer .newsletter button:active {
397
+ @include gradient(#1b263a,#2e4263,#253550);
398
+ }
399
+
400
+ footer .newsletter button:focus {
401
+ outline:0;
402
+ @include box-shadow((inset #456395 0 1px 0, rgba(0,0,0,0.75) 0 1px 4px, inset rgba(0,34,85,0.3) 0 1px 3px, rgba(255,255,255,0.1) 0 1px 0, #2a93ff 0 0 9px, #2a93ff 0 0 9px, #2a93ff 0 0 9px));
403
+ }
404
+
405
+ footer .newsletter button span {
406
+ overflow:hidden;
407
+ display:block;
408
+ width:8px;
409
+ height:12px;
410
+ margin:0 auto;
411
+ position:relative;
412
+ top:1px;
413
+ text-indent:-999px;
414
+ background:url(<%= asset_path "newsletter_btn_arrow.png" %>) no-repeat;
415
+ }
416
+
417
+ footer p.service_by {
418
+ font-size:15px;
419
+ margin:13px 0 34px;
420
+ }
421
+
422
+ footer a.jilion {
423
+ display:inline-block;
424
+ background:url(<%= asset_path "jilion.png" %>) no-repeat;
425
+ width:67px;
426
+ height:19px;
427
+ position:relative;
428
+ top:4px;
429
+ left:2px;
430
+ }
431
+
432
+ footer a.jilion span {display:none}
433
+
434
+ footer .footer_break {
435
+ clear:both;
436
+ width:669px;
437
+ height:14px;
438
+ margin:0 auto;
439
+ background:url(<%= asset_path "footer_break.png" %> );
440
+ }
441
+
442
+ footer p.copyright {
443
+ padding:5px 0 0;
444
+ font-size:12px;
445
+ text-align:center;
446
+ }
447
+
448
+ footer .networks {
449
+ margin:25px 0 0;
450
+ position:relative;
451
+ /* top:36px;
452
+ left:36px;
453
+ */}
454
+
455
+ footer .networks > div {
456
+ position:relative !important;
457
+ top:-2px !important;
458
+ }
459
+
460
+ footer p.copyright iframe {
461
+ display:inline;
462
+ margin-top:5px;
463
+ }
464
+
465
+ /* ========= */
466
+ /* = Forms = */
467
+ /* ========= */
468
+
469
+ form .entry {
470
+ position:relative;
471
+ margin:10px 0;
472
+ }
473
+
474
+ form .entry .left_field, form .entry .right_field {
475
+ float:left;
476
+ }
477
+
478
+
479
+ form label.icon {
480
+ display:block;
481
+ position:absolute;
482
+ text-indent:-9999px;
483
+ overflow:hidden;
484
+ z-index:2;
485
+ }
486
+
487
+ form .entry input.text, form .entry textarea {
488
+ width:385px;
489
+ height:40px;
490
+ background:#f1f6ff;
491
+ text-shadow:#fff 0 1px 0;
492
+ border:1px solid #335994;
493
+ font-size:22px;
494
+ font-family:inherit;
495
+ color:#1e3966;
496
+ padding:0 5px 0 40px;
497
+ @include border-radius(5px);
498
+ @include box-shadow((inset rgba(0,34,85,0.3) 0 1px 3px, rgba(255,255,255,0.4) 0 1px 0));
499
+ }
500
+
501
+ form .entry textarea {
502
+ width:410px;
503
+ height:100px;
504
+ padding:8px 10px;
505
+ resize:vertical;
506
+ }
507
+
508
+ form .entry input.text.no_icon {
509
+ width:415px;
510
+ padding-left:10px;
511
+ }
512
+
513
+ form .entry.small_field input.text {
514
+ width:104px;
515
+ }
516
+
517
+ form .entry .left_field input.text, form .entry .left_field input.text.no_icon {
518
+ width:194px;
519
+ margin-right:10px;
520
+ }
521
+
522
+ form .entry .right_field input.text, form .entry .right_field input.text.no_icon {
523
+ width:194px;
524
+ }
525
+
526
+ form .entry input.text.errors, form .entry textarea.text.errors {
527
+ background:#ffd9d9;
528
+ }
529
+
530
+ form .entry input::-webkit-input-placeholder, form .entry textarea::-webkit-input-placeholder, form .entry input.text.placeholder {color:#7690b3}
531
+ form .entry .errors::-webkit-input-placeholder, form .entry input.text.errors.placeholder, , form .entry textarea.text.errors.placeholder {color:#b37676}
532
+ form .entry input:-moz-placeholder, form .entry textarea:-moz-placeholder {color:#7690b3}
533
+ form .entry input.errors:-moz-placeholder, form .entry textarea.errors:-moz-placeholder {color:#b37676}
534
+
535
+ form .entry .text:focus, form .entry textarea:focus, footer .newsletter input.field:focus {
536
+ outline:0;
537
+ @include box-shadow((inset rgba(0,34,85,0.3) 0 1px 3px, rgba(255,255,255,0.1) 0 1px 0, #2a93ff 0 0 9px, #2a93ff 0 0 9px, #2a93ff 0 0 9px));
538
+ }
539
+
540
+ form .entry.select select {
541
+ height:41px;
542
+ font-family:inherit;
543
+ font-size:22px;
544
+ color:#4a648e;
545
+ padding:0 24px 0 10px;
546
+ text-shadow:rgba(255,255,255,0.8) 0 1px 0;
547
+ background:url(<%= asset_path "custom_select.png" %>) no-repeat right top;
548
+ border:1px solid #335994;
549
+ @include border-radius(5px);
550
+ @include box-shadow((inset rgba(255,255,255,0.8) 0 1px 0, rgba(255,255,255,0.3) 0 1px 0));
551
+ -webkit-appearance:none;
552
+ }
553
+
554
+ form .entry.select select:focus, #content h2 select:focus {
555
+ border:1px solid #000;
556
+ @include box-shadow((inset rgba(255,255,255,0.8) 0 1px 0, rgba(255,255,255,0.1) 0 1px 0, #2a93ff 0 0 9px, #2a93ff 0 0 9px, #2a93ff 0 0 9px));
557
+ }
558
+
559
+ form .entry.select .left_field select, form .entry.select .right_field select {width:211px}
560
+
561
+ .radio_wrap, .checkbox_wrap {
562
+ position:relative;
563
+ margin-top:4px;
564
+ }
565
+
566
+ .radio_wrap input, .checkbox_wrap input {
567
+ position:relative;
568
+ top:0;
569
+ left:0;
570
+ opacity:0;
571
+ width:34px;
572
+ height:34px;
573
+ z-index:2;
574
+ float:left;
575
+ }
576
+
577
+ .checkbox_wrap label {
578
+ position:relative;
579
+ display:block;
580
+ font-weight:600;
581
+ height:24px;
582
+ padding:9px 0 0 38px;
583
+ left:-6px;
584
+ background:url(<%= asset_path "custom_checkbox.png" %>) no-repeat;
585
+ }
586
+
587
+ .radio_wrap span.bg, .radio_wrap label {
588
+ position:relative;
589
+ display:block;
590
+ font-weight:600;
591
+ height:24px;
592
+ padding:9px 0 0 38px;
593
+ left:-6px;
594
+ background:url(<%= asset_path "custom_radio.png" %>) no-repeat;
595
+ }
596
+
597
+ .checkbox_wrap input:checked + label, .radio_wrap input:checked + label, .radio_wrap input:checked + span.bg {background-position:0 -34px}
598
+ .checkbox_wrap input:focus + label, .radio_wrap input:focus + label, .radio_wrap input:focus + span.bg {background-position:0 -68px}
599
+ .checkbox_wrap input:focus:checked + label, .radio_wrap input:focus:checked + label, .radio_wrap input:focus:checked + span.bg {background-position:0 -102px}
600
+
601
+ .checkbox_wrap input:disabled + label,
602
+ .radio_wrap input:disabled + label,
603
+ .radio_wrap input:disabled + span.bg,
604
+ form .entry select:disabled,
605
+ form .entry input.text:disabled,
606
+ form .entry textarea:disabled {
607
+ opacity:0.5;
608
+ filter:alpha(opacity=50);
609
+ }
610
+
611
+ form .inline_errors span, .inline_alert {
612
+ padding:2px 5px 2px;
613
+ font-size:13px;
614
+ color:#fff;
615
+ text-shadow:rgba(0,0,0,0.4) 0 -1px 0;
616
+ display:inline;
617
+ position:relative;
618
+ top:-1px;
619
+ left:10px;
620
+ border:1px solid #264067;
621
+ z-index:2;
622
+ @include gradient(#df001b,#8c0006,#b40011);
623
+ @include border-radius(0 0 4px 4px);
624
+ @include box-shadow((inset #f4002d 0 1px 0, rgba(0,0,0,0.4) 0 1px 3px))
625
+ }
626
+
627
+ form .inline_errors.plan span, #content form .entry.card .inline_errors span, form .entry.terms .inline_errors span, .inline_alert {
628
+ @include border-radius(4px);
629
+ }
630
+
631
+ .inline_alert a {
632
+ color:#fff;
633
+ text-decoration:underline;
634
+ }
635
+
636
+ /* =============== */
637
+ /* = Label Icons = */
638
+ /* =============== */
639
+
640
+ form .site label.icon {
641
+ width:20px;
642
+ height:21px;
643
+ background:url(<%= asset_path "fields/domain_icon.png" %>) no-repeat;
644
+ top:12px;
645
+ left:10px;
646
+ }
647
+
648
+ form .entry.password label.icon {
649
+ width:16px;
650
+ height:21px;
651
+ background:url(<%= asset_path "fields/password_icon.png" %>) no-repeat;
652
+ top:10px;
653
+ left:12px;
654
+ }
655
+
656
+ form .entry.email label.icon {
657
+ width:20px;
658
+ height:21px;
659
+ background:url(<%= asset_path "fields/email_icon.png" %>) no-repeat;
660
+ top:12px;
661
+ left:10px;
662
+ }
663
+
664
+ form .name label.icon {
665
+ width:18px;
666
+ height:18px;
667
+ background:url(<%= asset_path "fields/user_icon.png" %>) no-repeat;
668
+ top:12px;
669
+ left:12px;
670
+ }
671
+
672
+ form .entry.card_number label.icon {
673
+ width:20px;
674
+ height:16px;
675
+ background:url(<%= asset_path "fields/card_icon.png" %>) no-repeat;
676
+ top:14px;
677
+ left:12px;
678
+ }
679
+
680
+ form .entry.path label.icon {
681
+ width:11px;
682
+ height:19px;
683
+ background:url(<%= asset_path "fields/path_icon.png" %>) no-repeat;
684
+ top:12px;
685
+ left:14px;
686
+ }
687
+
688
+ form .entry.ticket_subject label.icon {
689
+ width:21px;
690
+ height:19px;
691
+ background:url(<%= asset_path "fields/ticket_icon.png" %>) no-repeat;
692
+ top:12px;
693
+ left:12px;
694
+ }
695
+
696
+ ul.form_list {
697
+ list-style-type:none;
698
+ margin:40px 0 5px;
699
+ padding:10px 13px;
700
+ line-height:20px;
701
+ font-size:14px;
702
+ text-align:left;
703
+ background:#94a5c1;
704
+ background:rgba(30,57,102,0.1);
705
+ @include box-shadow((inset rgba(0,47,99,0.6) 0 1px 4px, rgba(255,255,255,0.3) 0 1px 0));
706
+ @include border-radius(4px);
707
+ }
708
+
709
+ ul.form_list li a {
710
+ color:#224375;
711
+ border-bottom:1px solid #708aa5;
712
+ }
713
+
714
+ /* =========== */
715
+ /* = Buttons = */
716
+ /* =========== */
717
+
718
+ .green_button, .blue_button, #help #gsfn_search_results input {
719
+ font-family:inherit;
720
+ color:#fff;
721
+ text-shadow:rgba(0,0,0,0.9) 0 -1px 0;
722
+ border:1px solid #1a4224;
723
+ @include gradient(#00b95a,#007d31,#009843);
724
+ @include box-shadow((inset #00e896 0 1px 0, #001a41 0 1px 4px));
725
+ @include border-radius(6px);
726
+ }
727
+
728
+ .blue_button, #help #gsfn_search_results input {
729
+ display:inline-block;
730
+ padding:10px 18px;
731
+ font-size:24px;
732
+ font-size:22px;
733
+ border-color:#15253b;
734
+ @include gradient(#6685ae,#314f78,#4b6a93);
735
+ @inline border-radius(12px);
736
+ @include box-shadow((inset #8da4c3 0 1px 0, #001a41 0 1px 4px));
737
+ }
738
+
739
+ .green_button:active {
740
+ @include gradient(#007d31,#00b95a,#009843);
741
+ }
742
+
743
+ .blue_button:active, #help #gsfn_search_results input:active {
744
+ @include gradient(#314f78,#6685ae,#4b6a93);
745
+ }
746
+
747
+ .green_button:focus, .blue_button:focus, #help #gsfn_search_results input:focus {
748
+ outline:0;
749
+ @include box-shadow((inset #00e896 0 1px 0, #001a41 0 1px 4px, #2a93ff 0 0 9px, #2a93ff 0 0 9px, #2a93ff 0 0 9px));
750
+ }
751
+
752
+ .blue_button:focus, #help #gsfn_search_results input:focus {
753
+ @include box-shadow((inset #8da4c3 0 1px 0, #001a41 0 1px 4px, #2a93ff 0 0 9px, #2a93ff 0 0 9px, #2a93ff 0 0 9px));
754
+ }
755
+
756
+ .green_button:disabled, .blue_button:disabled, #help #gsfn_search_results input:disabled {
757
+ opacity:0.5;
758
+ filter:alpha(opacity=50);
759
+ }
760
+
761
+ /* ========= */
762
+ /* = Popup = */
763
+ /* ========= */
764
+
765
+ .popup {
766
+ width:100%;
767
+ height:100%;
768
+ position:fixed;
769
+ top:0;
770
+ left:0;
771
+ bottom:0;
772
+ right:0;
773
+ z-index:100000;
774
+ color:#224375;
775
+ text-shadow:rgba(255,255,255,0.25) 0 1px 0;
776
+ background-color:rgba(0,0,0,0.3);
777
+ -ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000)"; /* IE8 */
778
+ filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000); /* IE6 & 7 */
779
+ zoom:1;
780
+ }
781
+
782
+ .popup .popup_wrap {
783
+ position:absolute;
784
+ top:16%;
785
+ left:0;
786
+ right:0;
787
+ margin:0 auto;
788
+ width:512px;
789
+ background:#8ea6c2 url(<%= asset_path "back_texture_my.png" %>);
790
+ @include border-radius(5px);
791
+ @include box-shadow((inset rgba(255,255,255,0.6) 0 1px 0, #000d20 0 10px 40px));
792
+ }
793
+
794
+ .popup .lights {
795
+ @include gradient(rgba(255,255,255,0.3),rgba(255,255,255,0),transparent);
796
+ @include border-radius(5px);
797
+ padding:30px 40px;
798
+ }
799
+
800
+ .popup a.close {
801
+ display:block;
802
+ width:18px;
803
+ height:19px;
804
+ background:url(<%= asset_path "close_popup.png" %>) no-repeat;
805
+ position:absolute;
806
+ top:5px;
807
+ right:5px;
808
+ }
809
+
810
+ .popup a.close span {display:none}
811
+
812
+ .popup h2.title {
813
+ font-size:36px;
814
+ font-weight:600;
815
+ padding:5px 0 25px;
816
+ color:#1e3966;
817
+ text-align:center;
818
+ }
819
+
820
+ .popup .break {
821
+ width:413px;
822
+ height:21px;
823
+ background:url(<%= asset_path "popup_break.png" %>) no-repeat;
824
+ margin:0 auto;
825
+ }
826
+
827
+ .popup .entry.terms {
828
+ text-align:center;
829
+ margin-top:0;
830
+ }
831
+
832
+ .popup .checkbox_wrap {
833
+ display:inline-block;
834
+ }
835
+
836
+ .checkbox_wrap a {
837
+ color:#224375;
838
+ border-bottom:1px solid #708aa5;
839
+ }
840
+
841
+ form .entry.sign_up {
842
+ padding:20px 0 0;
843
+ }
844
+
845
+ .popup .entry.sign_up {
846
+ text-align:center;
847
+ }
848
+
849
+ form .entry.sign_up input {
850
+ text-align:center;
851
+ width:150px;
852
+ height:56px;
853
+ background:url(<%= asset_path "popup_sign_up_btn.png" %>) no-repeat;
854
+ color:#fff;
855
+ font-family:inherit;
856
+ font-size:29px;
857
+ font-weight:500;
858
+ text-align:center;
859
+ border:none;
860
+ text-shadow:rgba(0,0,0,0.4) 0 1px 0;
861
+ @include border-radius(9px);
862
+ @include box-shadow(rgba(0,36,89,0.65) 0 1px 8px);
863
+ }
864
+
865
+ form .entry.sign_up input:active {background-position:0 -56px}
866
+
867
+ form .entry.sign_up input:focus {
868
+ outline:0;
869
+ @include box-shadow((rgba(0,36,89,0.65) 0 1px 8px, #2a93ff 0 0 9px, #2a93ff 0 0 9px, #2a93ff 0 0 9px));
870
+ }
871
+
872
+ .entry.login {
873
+ padding:20px 0 0;
874
+ }
875
+
876
+ .entry.login .blue_button {
877
+ float:left;
878
+ padding:20px 0;
879
+ font-size:28px;
880
+ width:144px;
881
+ }
882
+
883
+ .entry.login ul.form_list {
884
+ width:246px;
885
+ float:left;
886
+ font-size:13px;
887
+ padding:8px 11px;
888
+ margin:0 0 0 19px;
889
+ }
890
+
891
+ .popup .alert {
892
+ text-align:center;
893
+ }
894
+
895
+ .popup .inline_alert {
896
+ left:auto;
897
+ top:-13px;
898
+ }
899
+
900
+ .spacer {clear:both}
901
+
902
+ .capitalize {text-transform:capitalize}
903
+
904
+ a {
905
+ text-decoration:none;
906
+ outline:0;
907
+ }
908
+
909
+ header, section, nav, aside, footer {display:block}
910
+
911
+ input::-moz-focus-inner, button::-moz-focus-inner {border: 0}
912
+
913
+ img {
914
+ border:none;
915
+ -moz-user-select: none;
916
+ -webkit-user-select: none;
917
+ -webkit-user-drag: none;
918
+ }
919
+
920
+
921
+ /* =============== */
922
+ /* = Error pages = */
923
+ /* =============== */
924
+
925
+ .error #content {
926
+ width:960px;
927
+ margin:0 auto;
928
+ padding-bottom:40px;
929
+ }
930
+
931
+ .error section.box h3.title {
932
+ color:#003165;
933
+ font-size:38px;
934
+ font-weight:600;
935
+ padding:40px 0 10px;
936
+ }
937
+
938
+ .error section.box p {
939
+ font-size:20px;
940
+ line-height:30px;
941
+ padding:8px 0;
942
+ }
943
+
944
+ .error section p a {
945
+ color:#1185ff;
946
+ border-bottom:1px solid #81bbfc;
947
+ }