blob: efe09c2ec27f5fa9e75b3645cbf010fc6d838f62 (
plain)
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
|
.author-links {
& > ul {
margin: 0;
& > li > {
.mail-button {
@include clickable($text-color-1, $mail-color);
}
.facebook-button {
@include clickable($text-color-1, $facebook-color);
}
.twitter-button {
@include clickable($text-color-1, $twitter-color);
}
.weibo-button {
@include clickable($text-color-1, $weibo-color);
}
.googlepluse-button {
@include clickable($text-color-1, $google-plus-color);
}
.telegram-button {
@include clickable($text-color-1, $telegram-color);
}
.medium-button {
@include clickable($text-color-1, $medium-color);
}
.zhihu-button {
@include clickable($text-color-1, $zhihu-color);
}
.douban-button {
@include clickable($text-color-1, $douban-color);
}
.linkedin-button {
@include clickable($text-color-1, $linkedin-color);
}
.github-button {
@include clickable($text-color-1, $github-color);
}
.npm-button {
@include clickable($text-color-1, $npm-color);
}
}
}
}
|