Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
.landing-wrapper {
2
 
3
    #header {
4
        width: 100%;
5
        min-height: 400px;
6
        background:  url("\#{resource['ultima-layout:images/landing/landing-header.png']}") top left no-repeat #f7f7f7;
7
        background-size: 100% auto;
8
 
9
        .header-top {
10
            width: 960px;
11
            margin: 0 auto;
12
            padding: 30px 0px;
13
 
14
            .logo {
15
                display: inline-block;
16
                vertical-align: middle;
17
                width: 200px;
18
                height: 30px;
19
                background: url("\#{resource['ultima-layout:images/logo.png']}") top left no-repeat;
20
            }
21
 
22
            #menu {
23
                float: right;
24
                list-style: none;
25
                margin: 0;
26
                padding: 0;
27
 
28
                li {
29
                    float: left;
30
                    display: block;
31
                    margin-left: 30px;
32
 
33
                    a {
34
                        color: #ffffff;
35
                    }
36
 
37
                    i {
38
                        display: none;
39
                    }
40
                }
41
 
42
                &.lmenu-active {
43
                    display: block;
44
                }
45
            }
46
 
47
            #menu-button {
48
                float: right;
49
                font-size: 36px;
50
                color: #ffffff;
51
                display: none;
52
            }
53
        }
54
 
55
        .header-content {
56
            width: 960px;
57
            margin: 0 auto;
58
            text-align: center;
59
 
60
            h1 {
61
                margin: 75px 0px 50px 0px;
62
                font-weight: 400;
63
                color: #ffffff;
64
                line-height: 36px;
65
            }
66
        }
67
    }
68
 
69
    #features {
70
        width: 960px;
71
        margin: 0 auto;
72
        padding: 50px 0px;
73
        text-align: center;
74
 
75
        h2 {
76
            font-weight: 400;
77
            line-height: 28px;
78
        }
79
 
80
        h3 {
81
            font-weight: 400;
82
        }
83
 
84
        p {
85
            color: $textSecondaryColor;
86
        }
87
 
88
        .ui-g-12 {
89
            padding: 2em .5em;
90
        }
91
 
92
        .feature-icon {
93
            display: inline-block;
94
            @include border-radius(50%);
95
            background-color: #f4f8fc;
96
            box-sizing: border-box;
97
            width: 100px;
98
            height: 100px;
99
            text-align: center;
100
            @include transition(background-color .3s);
101
 
102
            i {
103
                margin-top: 30px;
104
                font-size: 36px;
105
            }
106
 
107
            &:hover {
108
                background-color: #e91e63;
109
 
110
                i {
111
                    color: #ffffff;
112
                }
113
            }
114
        }
115
    }
116
 
117
    #promotion {
118
        background:  url("\#{resource['ultima-layout:images/landing/promotion.png']}") top left no-repeat;
119
        background-size: 100% auto;
120
 
121
        .ui-lg-8 {
122
            padding: 150px 0 0 150px;
123
            h1 {
124
                font-weight: 48px;
125
                color: #ffffff;
126
                font-weight: 400;
127
            }
128
        }
129
 
130
        .ui-lg-4 {
131
            margin: -50px 0 -50px 0;
132
            .card {
133
                -webkit-box-shadow: 0 0 27px 4.5px rgba(13, 36, 62, 0.1);
134
                -moz-box-shadow: 0 0 27px 4.5px rgba(13, 36, 62, 0.1);
135
            	box-shadow: 0 0 27px 4.5px rgba(13, 36, 62, 0.1);
136
                margin-bottom: 20px;
137
 
138
                h3 {
139
                    font-weight: 400;
140
                }
141
 
142
                p {
143
                    color: $textSecondaryColor;
144
                }
145
 
146
                &:last-child {
147
                    margin-bottom: 0;
148
                }
149
            }
150
        }
151
    }
152
 
153
    #pricing {
154
        width: 960px;
155
        margin: 0 auto;
156
        padding: 50px 0px;
157
        text-align: center;
158
 
159
        h2 {
160
            font-weight: 400;
161
        }
162
 
163
        p {
164
            color: $textSecondaryColor;
165
        }
166
 
167
        .pricing-box {
168
            .card {
169
                height: 100%;
170
                padding: 0;
171
            }
172
 
173
            .pricing-header {
174
                padding: 40px 0;
175
                color: #ffffff;
176
 
177
                span {
178
                    display: block;
179
                    line-height: 48px;
180
 
181
                    &.name {
182
                        font-weight: 300;
183
                        font-size: 24px;
184
                    }
185
 
186
                    &.fee {
187
                        font-size: 48px;
188
                        font-weight: 700;
189
                    }
190
 
191
                    &.type {
192
                        font-weight: 300;
193
                        font-size: 16px;
194
                    }
195
                }
196
            }
197
 
198
            .pricing-content {
199
                ul {
200
                    margin: 0;
201
                    padding: 30px 20px;
202
                    list-style-type: none;
203
 
204
                    li {
205
                        font-size: 18px;
206
                        text-align: left;
207
                        padding: 10px 14px;
208
 
209
                        i {
210
                            margin-right: 20px;
211
                            vertical-align: middle;
212
                        }
213
 
214
                        span {
215
                            vertical-align: middle;
216
                        }
217
                    }
218
                }
219
            }
220
 
221
            &.pricing-basic {
222
                .pricing-header {
223
                    background-color: #3f51b5;
224
                }
225
 
226
                i {
227
                    color: #3f51b5;
228
                }
229
            }
230
 
231
            &.pricing-standard {
232
                .pricing-header {
233
                    background-color: #e91e63;
234
                }
235
 
236
                i {
237
                    color: #e91e63;
238
                }
239
            }
240
 
241
            &.pricing-professional {
242
                .pricing-header {
243
                    background-color: #607d8b;
244
                }
245
 
246
                i {
247
                    color: #607d8b;
248
                }
249
            }
250
        }
251
    }
252
 
253
    #video {
254
        background-color: #f7f7f7;
255
        min-width: 400px;
256
 
257
        .video-content {
258
            width: 960px;
259
            margin: 0 auto;
260
            padding: 50px 0px;
261
            text-align: center;
262
 
263
 
264
            h2 {
265
                font-weight: 400;
266
            }
267
 
268
            p {
269
                color: $textSecondaryColor;
270
            }
271
        }
272
    }
273
 
274
    .footer {
275
        background-color: #f7f7f7;
276
        border-top: 1px solid #dddddd;
277
 
278
        .footer-content {
279
            width: 960px;
280
            margin: 0 auto;
281
            padding: 30px 0px 50px 0px;
282
 
283
            ul {
284
                float: right;
285
                list-style-type: none;
286
 
287
                li {
288
                    a {
289
                        color: $textSecondaryColor;
290
                        @include transition(color .3s);
291
 
292
                        &:hover {
293
                            color: $textColor;
294
                        }
295
                    }
296
                }
297
            }
298
 
299
        }
300
 
301
 
302
    }
303
}
304
 
305
@media (max-width: 1024px) {
306
 
307
    .landing-wrapper {
308
        #header {
309
            min-height: 200px;
310
            background-size: cover;
311
 
312
            .header-top {
313
                z-index: 100;
314
                position: fixed;
315
                top: 0;
316
                background: #424242;
317
                background-size: 100% auto;
318
                padding: 30px;
319
                width: 100%;
320
                box-sizing: border-box;
321
                -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
322
                -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
323
                box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
324
 
325
                #menu-button {
326
                    display: inline-block;
327
                }
328
 
329
                #menu {
330
                    z-index: 100;
331
                    position: fixed;
332
                    top: 86px;
333
                    right: 30px;
334
                    float: none;
335
                    display: none;
336
                    margin: 0;
337
                    padding: 0;
338
                    width: 225px;
339
                    list-style: none;
340
                    background-color: #ffffff;
341
                    -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
342
                    -moz-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
343
                    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
344
                    -webkit-animation-duration: .5s;
345
                    -moz-animation-duration: .5s;
346
                    animation-duration: .5s;
347
 
348
                    li {
349
                        float: none;
350
                        margin-left: 0;
351
 
352
                        a {
353
                            font-size: 16px;
354
                            display: block;
355
                            padding: 10px 16px;
356
                            color: $textColor;
357
                            width: 100%;
358
                            box-sizing: border-box;
359
                            @include transition(background-color .3s);
360
                            overflow: hidden;
361
 
362
                            i {
363
                                color: #757575;
364
                                display: inline-block;
365
                                vertical-align: middle;
366
                                margin-right: 12px;
367
                                font-size: 24px;
368
                            }
369
 
370
                            &:hover {
371
                                background-color: #e8e8e8;
372
                            }
373
 
374
                            span {
375
                                display: inline-block;
376
                                vertical-align: middle;
377
                            }
378
                        }
379
                    }
380
                }
381
            }
382
 
383
            .header-content {
384
                width: 100%;
385
                padding: 100px 30px 60px 30px;
386
                box-sizing: border-box;
387
 
388
                h1 {
389
                    margin: 75px 0px 50px 0px;
390
                    font-weight: 400;
391
                }
392
            }
393
        }
394
 
395
        #features, #promotion, #pricing, #video, .footer .footer-content {
396
            width: 100%;
397
            padding-right: 30px;
398
            padding-left: 30px;
399
            box-sizing: border-box;
400
        }
401
 
402
        #promotion {
403
 
404
            .ui-lg-8 {
405
                padding: 100px 0 30px;
406
                text-align: center;
407
 
408
                h1 {
409
                    margin-top: -30px;
410
                    font-weight: 48px;
411
                    color: #ffffff;
412
                    font-weight: 400;
413
                }
414
            }
415
        }
416
 
417
        #video {
418
           .video-content {
419
               width: 100%;
420
 
421
               .video-container {
422
                   iframe {
423
                       width: 350px;
424
                       height: 220px;
425
                   }
426
               }
427
           }
428
       }
429
 
430
       .footer  {
431
           .footer-content {
432
               text-align: center;
433
 
434
               ul {
435
                   float: none;
436
                   margin: 0;
437
                   padding: 0;
438
               }
439
           }
440
       }
441
    }
442
}
443
 
444
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
445
    .landing-wrapper {
446
        .header {
447
            .header-top {
448
                .logo {
449
                    background: url("\#{resource['ultima-layout:images/logo2x.png']}") top left no-repeat;
450
                    background-size: 200px 30px;
451
                }
452
            }
453
        }
454
    }
455
}