footer.less
1.75 KB
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
@import url(/modules/css/config.less);
.line-it-button {
//visibility: hidden !important;
}
footer {
background: #373c43;
.layout-row {
width: 970px;
}
.cr {
font: 18px/10 'Raleway Medium';
color: #fff;
}
ul {
//width: 380px;
width: 230px;
padding-top: 45px;
float: right;
.flex();
}
p {
float: left;
}
li {
a {
display: block;
width: 90px;
height: 90px;
}
.facebook {
background: url(../home/img/facebook_normal.png?__inline);
background-size: cover;
&:hover {
background: url(../home/img/facebook_hover.png?__inline);
background-size: cover;
}
}
.line {
background: url(../home/img/line_normal.png?__inline);
background-size: cover;
&:hover {
background: url(../home/img/line_hover.png?__inline);
background-size: cover;
}
}
.youtube {
background: url(../home/img/youtube_normal.png?__inline);
background-size: cover;
&:hover {
background: url(../home/img/youtube_hover.png?__inline);
background-size: cover;
}
}
}
}
@media only screen and (max-width: 767px) {
footer {
background: #373c43;
.layout-row {
width: auto;
}
.cr {
padding-top: 20px;
font: 14px/2 'Raleway Medium';
text-align: center;
}
ul {
width: auto;
padding: 10px 60px 30px;
float: none;
.flex();
}
p {
float: none;
}
li {
a {
display: block;
width: 60px;
height: 60px;
}
}
}
}
@media only screen and (min-width: 768px) and (max-width: 1142px) {
footer {
.layout-row {
width: auto !important;
padding: 0 20px;
}
}
}