freelancer_rails 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,205 @@
1
+ /*
2
+ * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
3
+ *
4
+ * Uses the built in easing capabilities added In jQuery 1.1
5
+ * to offer multiple easing options
6
+ *
7
+ * TERMS OF USE - jQuery Easing
8
+ *
9
+ * Open source under the BSD License.
10
+ *
11
+ * Copyright © 2008 George McGinley Smith
12
+ * All rights reserved.
13
+ *
14
+ * Redistribution and use in source and binary forms, with or without modification,
15
+ * are permitted provided that the following conditions are met:
16
+ *
17
+ * Redistributions of source code must retain the above copyright notice, this list of
18
+ * conditions and the following disclaimer.
19
+ * Redistributions in binary form must reproduce the above copyright notice, this list
20
+ * of conditions and the following disclaimer in the documentation and/or other materials
21
+ * provided with the distribution.
22
+ *
23
+ * Neither the name of the author nor the names of contributors may be used to endorse
24
+ * or promote products derived from this software without specific prior written permission.
25
+ *
26
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
27
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
28
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29
+ * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
31
+ * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
32
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
33
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
34
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
35
+ *
36
+ */
37
+
38
+ // t: current time, b: begInnIng value, c: change In value, d: duration
39
+ jQuery.easing['jswing'] = jQuery.easing['swing'];
40
+
41
+ jQuery.extend( jQuery.easing,
42
+ {
43
+ def: 'easeOutQuad',
44
+ swing: function (x, t, b, c, d) {
45
+ //alert(jQuery.easing.default);
46
+ return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
47
+ },
48
+ easeInQuad: function (x, t, b, c, d) {
49
+ return c*(t/=d)*t + b;
50
+ },
51
+ easeOutQuad: function (x, t, b, c, d) {
52
+ return -c *(t/=d)*(t-2) + b;
53
+ },
54
+ easeInOutQuad: function (x, t, b, c, d) {
55
+ if ((t/=d/2) < 1) return c/2*t*t + b;
56
+ return -c/2 * ((--t)*(t-2) - 1) + b;
57
+ },
58
+ easeInCubic: function (x, t, b, c, d) {
59
+ return c*(t/=d)*t*t + b;
60
+ },
61
+ easeOutCubic: function (x, t, b, c, d) {
62
+ return c*((t=t/d-1)*t*t + 1) + b;
63
+ },
64
+ easeInOutCubic: function (x, t, b, c, d) {
65
+ if ((t/=d/2) < 1) return c/2*t*t*t + b;
66
+ return c/2*((t-=2)*t*t + 2) + b;
67
+ },
68
+ easeInQuart: function (x, t, b, c, d) {
69
+ return c*(t/=d)*t*t*t + b;
70
+ },
71
+ easeOutQuart: function (x, t, b, c, d) {
72
+ return -c * ((t=t/d-1)*t*t*t - 1) + b;
73
+ },
74
+ easeInOutQuart: function (x, t, b, c, d) {
75
+ if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
76
+ return -c/2 * ((t-=2)*t*t*t - 2) + b;
77
+ },
78
+ easeInQuint: function (x, t, b, c, d) {
79
+ return c*(t/=d)*t*t*t*t + b;
80
+ },
81
+ easeOutQuint: function (x, t, b, c, d) {
82
+ return c*((t=t/d-1)*t*t*t*t + 1) + b;
83
+ },
84
+ easeInOutQuint: function (x, t, b, c, d) {
85
+ if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
86
+ return c/2*((t-=2)*t*t*t*t + 2) + b;
87
+ },
88
+ easeInSine: function (x, t, b, c, d) {
89
+ return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
90
+ },
91
+ easeOutSine: function (x, t, b, c, d) {
92
+ return c * Math.sin(t/d * (Math.PI/2)) + b;
93
+ },
94
+ easeInOutSine: function (x, t, b, c, d) {
95
+ return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
96
+ },
97
+ easeInExpo: function (x, t, b, c, d) {
98
+ return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
99
+ },
100
+ easeOutExpo: function (x, t, b, c, d) {
101
+ return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
102
+ },
103
+ easeInOutExpo: function (x, t, b, c, d) {
104
+ if (t==0) return b;
105
+ if (t==d) return b+c;
106
+ if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
107
+ return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
108
+ },
109
+ easeInCirc: function (x, t, b, c, d) {
110
+ return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
111
+ },
112
+ easeOutCirc: function (x, t, b, c, d) {
113
+ return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
114
+ },
115
+ easeInOutCirc: function (x, t, b, c, d) {
116
+ if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
117
+ return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
118
+ },
119
+ easeInElastic: function (x, t, b, c, d) {
120
+ var s=1.70158;var p=0;var a=c;
121
+ if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
122
+ if (a < Math.abs(c)) { a=c; var s=p/4; }
123
+ else var s = p/(2*Math.PI) * Math.asin (c/a);
124
+ return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
125
+ },
126
+ easeOutElastic: function (x, t, b, c, d) {
127
+ var s=1.70158;var p=0;var a=c;
128
+ if (t==0) return b; if ((t/=d)==1) return b+c; if (!p) p=d*.3;
129
+ if (a < Math.abs(c)) { a=c; var s=p/4; }
130
+ else var s = p/(2*Math.PI) * Math.asin (c/a);
131
+ return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
132
+ },
133
+ easeInOutElastic: function (x, t, b, c, d) {
134
+ var s=1.70158;var p=0;var a=c;
135
+ if (t==0) return b; if ((t/=d/2)==2) return b+c; if (!p) p=d*(.3*1.5);
136
+ if (a < Math.abs(c)) { a=c; var s=p/4; }
137
+ else var s = p/(2*Math.PI) * Math.asin (c/a);
138
+ if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
139
+ return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
140
+ },
141
+ easeInBack: function (x, t, b, c, d, s) {
142
+ if (s == undefined) s = 1.70158;
143
+ return c*(t/=d)*t*((s+1)*t - s) + b;
144
+ },
145
+ easeOutBack: function (x, t, b, c, d, s) {
146
+ if (s == undefined) s = 1.70158;
147
+ return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
148
+ },
149
+ easeInOutBack: function (x, t, b, c, d, s) {
150
+ if (s == undefined) s = 1.70158;
151
+ if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
152
+ return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
153
+ },
154
+ easeInBounce: function (x, t, b, c, d) {
155
+ return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
156
+ },
157
+ easeOutBounce: function (x, t, b, c, d) {
158
+ if ((t/=d) < (1/2.75)) {
159
+ return c*(7.5625*t*t) + b;
160
+ } else if (t < (2/2.75)) {
161
+ return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
162
+ } else if (t < (2.5/2.75)) {
163
+ return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
164
+ } else {
165
+ return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
166
+ }
167
+ },
168
+ easeInOutBounce: function (x, t, b, c, d) {
169
+ if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
170
+ return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
171
+ }
172
+ });
173
+
174
+ /*
175
+ *
176
+ * TERMS OF USE - EASING EQUATIONS
177
+ *
178
+ * Open source under the BSD License.
179
+ *
180
+ * Copyright © 2001 Robert Penner
181
+ * All rights reserved.
182
+ *
183
+ * Redistribution and use in source and binary forms, with or without modification,
184
+ * are permitted provided that the following conditions are met:
185
+ *
186
+ * Redistributions of source code must retain the above copyright notice, this list of
187
+ * conditions and the following disclaimer.
188
+ * Redistributions in binary form must reproduce the above copyright notice, this list
189
+ * of conditions and the following disclaimer in the documentation and/or other materials
190
+ * provided with the distribution.
191
+ *
192
+ * Neither the name of the author nor the names of contributors may be used to endorse
193
+ * or promote products derived from this software without specific prior written permission.
194
+ *
195
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
196
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
197
+ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
198
+ * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
199
+ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
200
+ * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
201
+ * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
202
+ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
203
+ * OF THE POSSIBILITY OF SUCH DAMAGE.
204
+ *
205
+ */
@@ -0,0 +1,505 @@
1
+ /*!
2
+ * Start Bootstrap - Freelancer v3.3.7+1 (http://startbootstrap.com/template-overviews/freelancer)
3
+ * Copyright 2013-2016 Start Bootstrap
4
+ * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE)
5
+ */
6
+ body {
7
+ font-family: 'Lato', 'Helvetica Neue', Helvetica, Arial, sans-serif;
8
+ overflow-x: hidden;
9
+ }
10
+ p {
11
+ font-size: 20px;
12
+ }
13
+ p.small {
14
+ font-size: 16px;
15
+ }
16
+ a,
17
+ a:hover,
18
+ a:focus,
19
+ a:active,
20
+ a.active {
21
+ color: #18BC9C;
22
+ outline: none;
23
+ }
24
+ h1,
25
+ h2,
26
+ h3,
27
+ h4,
28
+ h5,
29
+ h6 {
30
+ font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
31
+ text-transform: uppercase;
32
+ font-weight: 700;
33
+ }
34
+ hr.star-light,
35
+ hr.star-primary {
36
+ padding: 0;
37
+ border: none;
38
+ border-top: solid 5px;
39
+ text-align: center;
40
+ max-width: 250px;
41
+ margin: 25px auto 30px;
42
+ }
43
+ hr.star-light:after,
44
+ hr.star-primary:after {
45
+ content: "\f005";
46
+ font-family: FontAwesome;
47
+ display: inline-block;
48
+ position: relative;
49
+ top: -0.8em;
50
+ font-size: 2em;
51
+ padding: 0 0.25em;
52
+ }
53
+ hr.star-light {
54
+ border-color: white;
55
+ }
56
+ hr.star-light:after {
57
+ background-color: #18BC9C;
58
+ color: white;
59
+ }
60
+ hr.star-primary {
61
+ border-color: #2C3E50;
62
+ }
63
+ hr.star-primary:after {
64
+ background-color: white;
65
+ color: #2C3E50;
66
+ }
67
+ .img-centered {
68
+ margin: 0 auto;
69
+ }
70
+ header {
71
+ text-align: center;
72
+ background: #18BC9C;
73
+ color: white;
74
+ }
75
+ header .container {
76
+ padding-top: 100px;
77
+ padding-bottom: 50px;
78
+ }
79
+ header img {
80
+ display: block;
81
+ margin: 0 auto 20px;
82
+ }
83
+ header .intro-text .name {
84
+ display: block;
85
+ font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
86
+ text-transform: uppercase;
87
+ font-weight: 700;
88
+ font-size: 2em;
89
+ }
90
+ header .intro-text .skills {
91
+ font-size: 1.25em;
92
+ font-weight: 300;
93
+ }
94
+ @media (min-width: 768px) {
95
+ header .container {
96
+ padding-top: 200px;
97
+ padding-bottom: 100px;
98
+ }
99
+ header .intro-text .name {
100
+ font-size: 4.75em;
101
+ }
102
+ header .intro-text .skills {
103
+ font-size: 1.75em;
104
+ }
105
+ }
106
+ .navbar-custom {
107
+ background: #2C3E50;
108
+ font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
109
+ text-transform: uppercase;
110
+ font-weight: 700;
111
+ border: none;
112
+ }
113
+ .navbar-custom a:focus {
114
+ outline: none;
115
+ }
116
+ .navbar-custom .navbar-brand {
117
+ color: white;
118
+ }
119
+ .navbar-custom .navbar-brand:hover,
120
+ .navbar-custom .navbar-brand:focus,
121
+ .navbar-custom .navbar-brand:active,
122
+ .navbar-custom .navbar-brand.active {
123
+ color: white;
124
+ }
125
+ .navbar-custom .navbar-nav {
126
+ letter-spacing: 1px;
127
+ }
128
+ .navbar-custom .navbar-nav li a {
129
+ color: white;
130
+ }
131
+ .navbar-custom .navbar-nav li a:hover {
132
+ color: #18BC9C;
133
+ outline: none;
134
+ }
135
+ .navbar-custom .navbar-nav li a:focus,
136
+ .navbar-custom .navbar-nav li a:active {
137
+ color: white;
138
+ }
139
+ .navbar-custom .navbar-nav li.active a {
140
+ color: white;
141
+ background: #18BC9C;
142
+ }
143
+ .navbar-custom .navbar-nav li.active a:hover,
144
+ .navbar-custom .navbar-nav li.active a:focus,
145
+ .navbar-custom .navbar-nav li.active a:active {
146
+ color: white;
147
+ background: #18BC9C;
148
+ }
149
+ .navbar-custom .navbar-toggle {
150
+ color: white;
151
+ text-transform: uppercase;
152
+ font-size: 10px;
153
+ border-color: white;
154
+ }
155
+ .navbar-custom .navbar-toggle:hover,
156
+ .navbar-custom .navbar-toggle:focus {
157
+ background-color: #18BC9C;
158
+ color: white;
159
+ border-color: #18BC9C;
160
+ }
161
+ @media (min-width: 768px) {
162
+ .navbar-custom {
163
+ padding: 25px 0;
164
+ -webkit-transition: padding 0.3s;
165
+ -moz-transition: padding 0.3s;
166
+ transition: padding 0.3s;
167
+ }
168
+ .navbar-custom .navbar-brand {
169
+ font-size: 2em;
170
+ -webkit-transition: all 0.3s;
171
+ -moz-transition: all 0.3s;
172
+ transition: all 0.3s;
173
+ }
174
+ .navbar-custom.affix {
175
+ padding: 10px 0;
176
+ }
177
+ .navbar-custom.affix .navbar-brand {
178
+ font-size: 1.5em;
179
+ }
180
+ }
181
+ section {
182
+ padding: 100px 0;
183
+ }
184
+ section h2 {
185
+ margin: 0;
186
+ font-size: 3em;
187
+ }
188
+ section.success {
189
+ background: #18BC9C;
190
+ color: white;
191
+ }
192
+ @media (max-width: 767px) {
193
+ section {
194
+ padding: 75px 0;
195
+ }
196
+ section.first {
197
+ padding-top: 75px;
198
+ }
199
+ }
200
+ #portfolio .portfolio-item {
201
+ margin: 0 0 15px;
202
+ right: 0;
203
+ }
204
+ #portfolio .portfolio-item .portfolio-link {
205
+ display: block;
206
+ position: relative;
207
+ max-width: 400px;
208
+ margin: 0 auto;
209
+ }
210
+ #portfolio .portfolio-item .portfolio-link .caption {
211
+ background: rgba(24, 188, 156, 0.9);
212
+ position: absolute;
213
+ width: 100%;
214
+ height: 100%;
215
+ opacity: 0;
216
+ transition: all ease 0.5s;
217
+ -webkit-transition: all ease 0.5s;
218
+ -moz-transition: all ease 0.5s;
219
+ }
220
+ #portfolio .portfolio-item .portfolio-link .caption:hover {
221
+ opacity: 1;
222
+ }
223
+ #portfolio .portfolio-item .portfolio-link .caption .caption-content {
224
+ position: absolute;
225
+ width: 100%;
226
+ height: 20px;
227
+ font-size: 20px;
228
+ text-align: center;
229
+ top: 50%;
230
+ margin-top: -12px;
231
+ color: white;
232
+ }
233
+ #portfolio .portfolio-item .portfolio-link .caption .caption-content i {
234
+ margin-top: -12px;
235
+ }
236
+ #portfolio .portfolio-item .portfolio-link .caption .caption-content h3,
237
+ #portfolio .portfolio-item .portfolio-link .caption .caption-content h4 {
238
+ margin: 0;
239
+ }
240
+ #portfolio * {
241
+ z-index: 2;
242
+ }
243
+ @media (min-width: 767px) {
244
+ #portfolio .portfolio-item {
245
+ margin: 0 0 30px;
246
+ }
247
+ }
248
+ .floating-label-form-group {
249
+ position: relative;
250
+ margin-bottom: 0;
251
+ padding-bottom: 0.5em;
252
+ border-bottom: 1px solid #eeeeee;
253
+ }
254
+ .floating-label-form-group input,
255
+ .floating-label-form-group textarea {
256
+ z-index: 1;
257
+ position: relative;
258
+ padding-right: 0;
259
+ padding-left: 0;
260
+ border: none;
261
+ border-radius: 0;
262
+ font-size: 1.5em;
263
+ background: none;
264
+ box-shadow: none !important;
265
+ resize: none;
266
+ }
267
+ .floating-label-form-group label {
268
+ display: block;
269
+ z-index: 0;
270
+ position: relative;
271
+ top: 2em;
272
+ margin: 0;
273
+ font-size: 0.85em;
274
+ line-height: 1.764705882em;
275
+ vertical-align: middle;
276
+ vertical-align: baseline;
277
+ opacity: 0;
278
+ -webkit-transition: top 0.3s ease,opacity 0.3s ease;
279
+ -moz-transition: top 0.3s ease,opacity 0.3s ease;
280
+ -ms-transition: top 0.3s ease,opacity 0.3s ease;
281
+ transition: top 0.3s ease,opacity 0.3s ease;
282
+ }
283
+ .floating-label-form-group:not(:first-child) {
284
+ padding-left: 14px;
285
+ border-left: 1px solid #eeeeee;
286
+ }
287
+ .floating-label-form-group-with-value label {
288
+ top: 0;
289
+ opacity: 1;
290
+ }
291
+ .floating-label-form-group-with-focus label {
292
+ color: #18BC9C;
293
+ }
294
+ form .row:first-child .floating-label-form-group {
295
+ border-top: 1px solid #eeeeee;
296
+ }
297
+ footer {
298
+ color: white;
299
+ }
300
+ footer h3 {
301
+ margin-bottom: 30px;
302
+ }
303
+ footer .footer-above {
304
+ padding-top: 50px;
305
+ background-color: #2C3E50;
306
+ }
307
+ footer .footer-col {
308
+ margin-bottom: 50px;
309
+ }
310
+ footer .footer-below {
311
+ padding: 25px 0;
312
+ background-color: #233140;
313
+ }
314
+ .btn-outline {
315
+ color: white;
316
+ font-size: 20px;
317
+ border: solid 2px white;
318
+ background: transparent;
319
+ transition: all 0.3s ease-in-out;
320
+ margin-top: 15px;
321
+ }
322
+ .btn-outline:hover,
323
+ .btn-outline:focus,
324
+ .btn-outline:active,
325
+ .btn-outline.active {
326
+ color: #18BC9C;
327
+ background: white;
328
+ border: solid 2px white;
329
+ }
330
+ .btn-primary {
331
+ color: white;
332
+ background-color: #2C3E50;
333
+ border-color: #2C3E50;
334
+ font-weight: 700;
335
+ }
336
+ .btn-primary:hover,
337
+ .btn-primary:focus,
338
+ .btn-primary:active,
339
+ .btn-primary.active,
340
+ .open .dropdown-toggle.btn-primary {
341
+ color: white;
342
+ background-color: #1a242f;
343
+ border-color: #161f29;
344
+ }
345
+ .btn-primary:active,
346
+ .btn-primary.active,
347
+ .open .dropdown-toggle.btn-primary {
348
+ background-image: none;
349
+ }
350
+ .btn-primary.disabled,
351
+ .btn-primary[disabled],
352
+ fieldset[disabled] .btn-primary,
353
+ .btn-primary.disabled:hover,
354
+ .btn-primary[disabled]:hover,
355
+ fieldset[disabled] .btn-primary:hover,
356
+ .btn-primary.disabled:focus,
357
+ .btn-primary[disabled]:focus,
358
+ fieldset[disabled] .btn-primary:focus,
359
+ .btn-primary.disabled:active,
360
+ .btn-primary[disabled]:active,
361
+ fieldset[disabled] .btn-primary:active,
362
+ .btn-primary.disabled.active,
363
+ .btn-primary[disabled].active,
364
+ fieldset[disabled] .btn-primary.active {
365
+ background-color: #2C3E50;
366
+ border-color: #2C3E50;
367
+ }
368
+ .btn-primary .badge {
369
+ color: #2C3E50;
370
+ background-color: white;
371
+ }
372
+ .btn-success {
373
+ color: white;
374
+ background-color: #18BC9C;
375
+ border-color: #18BC9C;
376
+ font-weight: 700;
377
+ }
378
+ .btn-success:hover,
379
+ .btn-success:focus,
380
+ .btn-success:active,
381
+ .btn-success.active,
382
+ .open .dropdown-toggle.btn-success {
383
+ color: white;
384
+ background-color: #128f76;
385
+ border-color: #11866f;
386
+ }
387
+ .btn-success:active,
388
+ .btn-success.active,
389
+ .open .dropdown-toggle.btn-success {
390
+ background-image: none;
391
+ }
392
+ .btn-success.disabled,
393
+ .btn-success[disabled],
394
+ fieldset[disabled] .btn-success,
395
+ .btn-success.disabled:hover,
396
+ .btn-success[disabled]:hover,
397
+ fieldset[disabled] .btn-success:hover,
398
+ .btn-success.disabled:focus,
399
+ .btn-success[disabled]:focus,
400
+ fieldset[disabled] .btn-success:focus,
401
+ .btn-success.disabled:active,
402
+ .btn-success[disabled]:active,
403
+ fieldset[disabled] .btn-success:active,
404
+ .btn-success.disabled.active,
405
+ .btn-success[disabled].active,
406
+ fieldset[disabled] .btn-success.active {
407
+ background-color: #18BC9C;
408
+ border-color: #18BC9C;
409
+ }
410
+ .btn-success .badge {
411
+ color: #18BC9C;
412
+ background-color: white;
413
+ }
414
+ .btn-social {
415
+ display: inline-block;
416
+ height: 50px;
417
+ width: 50px;
418
+ border: 2px solid white;
419
+ border-radius: 100%;
420
+ text-align: center;
421
+ font-size: 20px;
422
+ line-height: 45px;
423
+ }
424
+ .btn:focus,
425
+ .btn:active,
426
+ .btn.active {
427
+ outline: none;
428
+ }
429
+ .scroll-top {
430
+ position: fixed;
431
+ right: 2%;
432
+ bottom: 2%;
433
+ width: 50px;
434
+ height: 50px;
435
+ z-index: 1049;
436
+ }
437
+ .scroll-top .btn {
438
+ font-size: 20px;
439
+ width: 50px;
440
+ height: 50px;
441
+ border-radius: 100%;
442
+ line-height: 28px;
443
+ }
444
+ .scroll-top .btn:focus {
445
+ outline: none;
446
+ }
447
+ .portfolio-modal .modal-content {
448
+ border-radius: 0;
449
+ background-clip: border-box;
450
+ -webkit-box-shadow: none;
451
+ box-shadow: none;
452
+ border: none;
453
+ min-height: 100%;
454
+ padding: 100px 0;
455
+ text-align: center;
456
+ }
457
+ .portfolio-modal .modal-content h2 {
458
+ margin: 0;
459
+ font-size: 3em;
460
+ }
461
+ .portfolio-modal .modal-content img {
462
+ margin-bottom: 30px;
463
+ }
464
+ .portfolio-modal .modal-content .item-details {
465
+ margin: 30px 0;
466
+ }
467
+ .portfolio-modal .close-modal {
468
+ position: absolute;
469
+ width: 75px;
470
+ height: 75px;
471
+ background-color: transparent;
472
+ top: 25px;
473
+ right: 25px;
474
+ cursor: pointer;
475
+ }
476
+ .portfolio-modal .close-modal:hover {
477
+ opacity: 0.3;
478
+ }
479
+ .portfolio-modal .close-modal .lr {
480
+ height: 75px;
481
+ width: 1px;
482
+ margin-left: 35px;
483
+ background-color: #2C3E50;
484
+ transform: rotate(45deg);
485
+ -ms-transform: rotate(45deg);
486
+ /* IE 9 */
487
+ -webkit-transform: rotate(45deg);
488
+ /* Safari and Chrome */
489
+ z-index: 1051;
490
+ }
491
+ .portfolio-modal .close-modal .lr .rl {
492
+ height: 75px;
493
+ width: 1px;
494
+ background-color: #2C3E50;
495
+ transform: rotate(90deg);
496
+ -ms-transform: rotate(90deg);
497
+ /* IE 9 */
498
+ -webkit-transform: rotate(90deg);
499
+ /* Safari and Chrome */
500
+ z-index: 1052;
501
+ }
502
+ .portfolio-modal .modal-backdrop {
503
+ opacity: 0;
504
+ display: none;
505
+ }