blob: 148d99fb0dc5cbd4ea1499ebccab19d26a718423 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
.facebook, .twitter, .instagram, .youtube, .github, .gitlab, .keybase, .linkedin, .medium, .mastodon, .slack, .stackoverflow, .rss {
fill: #BABABA;
}
.new-window {
opacity: 0;
display: inline-block;
vertical-align: top;
}
.link-transition:hover .new-window{
opacity: 1;
}
.facebook:hover {
fill: #3b5998;
}
.twitter:hover {
fill: #1da1f2;
}
.instagram:hover {
fill: #e1306c;
}
.youtube:hover {
fill: #cd201f;
}
.github:hover {
fill: #6cc644;
}
.gitlab:hover {
fill: #FC6D26;
}
.keybase:hover {
fill: #3d76ff;
}
.linkedin:hover {
fill: #0077b5
}
.medium:hover {
fill: #0077b5
}
.mastodon:hover {
fill: #3088d4;
}
.slack:hover {
fill: #E01E5A;
}
.stackoverflow:hover {
fill: #f48024;
}
.rss:hover{
fill: #ff6f1a;
}
|