-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path_footer.scss
118 lines (116 loc) · 2.35 KB
/
_footer.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* =================================== */
/* Footer Styles
/* =================================== */
.footer-area {
background: $title-color;
.single-footer-widget {
@media (max-width: 991px) {
margin-bottom: 30px;
}
h4 {
color: #ffffff;
margin-bottom: 35px;
@media (max-width: 1024px) {
font-size: 18px;
}
@media (max-width: 991px) {
margin-bottom: 15px;
}
}
ul {
padding-left: 0;
li {
margin-bottom: 15px;
list-style: none;
a {
@include transition();
color: $text-color;
&:hover {
color: #ffffff;
}
}
}
}
.form-wrap {
margin-top: 25px;
}
input {
height: 40px;
border: none;
width: 80% !important;
font-weight: 300;
background: #334f6c;
color: #ffffff;
border-radius: 0;
font-size: 14px;
padding: 10px;
padding-left: 20px;
&:focus {
outline: none;
box-shadow: none;
}
}
.click-btn {
background: $primary-color;
background-size: 200% auto;
color: $title-color;
border-radius: 0;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
padding: 8px 20px;
margin-left: -60px;
font-size: 12px;
text-transform: uppercase;
font-family: $title-font;
font-weight: 600;
border: 0;
@include transition();
span {
font-weight: 500;
}
&:focus {
outline: none;
box-shadow: none;
}
&:hover {
background-position: right center;
}
}
}
.footer-bottom {
margin-top: 50px;
@media (max-width: 991px) {
margin-top: 20px;
}
a {
color: $primary-color;
}
.footer-social {
text-align: right;
a {
background: #334f6c;
width: 20px;
width: 40px;
display: inline-table;
height: 40px;
text-align: center;
padding-top: 10px;
@include transition();
&:hover {
background: $primary-color;
i {
color: $title-color;
}
}
}
i {
color: #cccccc;
@include transition();
}
@media (max-width: 991px) {
text-align: left;
margin-top: 20px;
}
}
}
}