Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/* Pre-footer */
2
.page-prefooter {
3
    padding: 30px 0;
4
    clear: both;
5
 
6
    h2 {
7
        font-weight: 700;
8
        font-size: 15px;
9
        text-transform: uppercase;
10
        letter-spacing: 1px;
11
        margin: 0 0 12px;
12
    }
13
 
14
    .subscribe-form {
15
        padding-top: 5px;
16
 
17
        .form-control {
18
            font-size: 12px;
19
            padding: 0 14px;
20
            height: 36px;
21
        }
22
 
23
        .btn {
24
            height: 34px;
25
            text-transform: uppercase;
26
            padding: 7px 16px;
27
        }
28
    }
29
 
30
    .social-icons {
31
        padding-top: 9px;
32
 
33
        li {
34
            @include opacity(0.35);
35
 
36
            &:hover {
37
                @include opacity(1);
38
            }
39
        }
40
    }
41
 
42
    p,
43
    address {
44
        margin: 0;
45
    }
46
}
47
 
48
/* Footer */
49
.page-footer {
50
    font-size: 12px;
51
    font-weight: 300;
52
    padding: 17px 0;
53
}
54
 
55
@media (max-width: $screen-sm-max) { /* 991px */
56
    .page-prefooter {
57
        padding-bottom: 10px;
58
 
59
        .footer-block {
60
            margin-bottom: 20px;
61
        }
62
 
63
        @include reset-container();
64
    }
65
 
66
    .page-footer {
67
        @include reset-container();
68
    }
69
}
70
 
71
/* Scroll Top */
72
 
73
.scroll-to-top {
74
    padding:2px;
75
    text-align:center;
76
    position:fixed;
77
    z-index: $zindex-go-to-top;
78
    bottom: 5px;
79
    display:none;
80
    right: 20px;
81
 
82
    > i {
83
        display: inline-block;
84
        font-size: 32px;
85
        @include opacity(0.7);
86
    }
87
 
88
    &:hover {
89
        cursor: pointer;
90
 
91
        > i {
92
            @include opacity(1);
93
        }
94
    }
95
}
96
 
97
@media (max-width: $screen-sm-max) { /* 991px */
98
    .scroll-to-top {
99
        right: 10px;
100
 
101
        > i {
102
            font-size: 28px;
103
        }
104
    }
105
}