-
Notifications
You must be signed in to change notification settings - Fork 359
Expand file tree
/
Copy path_index.less
More file actions
65 lines (54 loc) · 1.72 KB
/
_index.less
File metadata and controls
65 lines (54 loc) · 1.72 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
@import "../../base.less";
@import "./_var.less";
.@{prefix}-footer {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
&__text {
font-size: @footer-text-font-size; // 版权信息文本大小
line-height: @footer-text-line-height; // 版权信息文本行高
color: @footer-text-color; // 版权信息文本颜色
}
&__link-list + &__text:not(:empty),
&__logo + &__text:not(:empty) {
margin-top: @footer-text-margin-top; // 版权信息顶部间距
}
&__link-list {
display: flex;
justify-content: center;
align-items: center;
}
&__link-item {
color: @footer-link-color; // 链接文本颜色
font-size: @footer-link-font-size; // 链接文本大小
line-height: @footer-link-line-height; // 链接文本行高
text-decoration: none;
}
&__link-line {
color: @footer-link-dividing-line-color; // 链接分界线颜色
display: inline-block;
padding: 0 @footer-link-dividing-line-padding; // 链接分界线左右间距
height: @footer-link-dividing-line-height;
}
&__logo {
display: flex;
justify-content: center;
align-items: center;
}
&__icon {
width: @footer-logo-icon-width; // 图标宽度
height: @footer-logo-icon-height; // 图标高度
margin-right: @footer-logo-icon-margin-right; // 图标右部间距
}
&__title {
font-weight: bold;
font-size: @footer-logo-title-font-size; // 图标配置,标题文本大小
line-height: @footer-logo-title-line-height; // 图标配置,标题文本行高
font-style: italic;
color: @footer-title-color;
}
&__title-url {
width: @footer-logo-title-url-width; // 图标配置,链接跳转地址宽度
}
}