File size: 3,281 Bytes
64aaca8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
.form#mastodon {
    display: inline-flex;
    width: 100%;
}

#mastodonInstance {
    /* passive mode; display as button */
    display: none;
    height: 2.654rem;
}

#has-mastodon.active {
    /* active mode display as form */
    flex: 1;
}

#has-mastodon.active #mastodonInstance {
    display: initial !important;
}

#has-mastodon.active #mastodon {
    border: 3pt solid #563acc02;
    border-radius: 2rem;
    background: #563acc22;
}

#mastodonInstance ~ button:focus .mastodon,
#mastodonInstance:focus ~ button .mastodon {
    background: #4f36b5;
    color: #fff;
}

#has-share {
    margin:var(--vskip);
    padding-bottom: 2pt;
}

#has-share[open] {
    padding-bottom: 0;
}

#share {
    float: left;
    margin: 1pt 0;
}

#has-share[open] #share {
    background: unset;
    padding-left: 0;
    color: unset;
}

#has-share[open] #share::after {
    content: ':';
}

#has-share ul {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#has-share a {
    display: inline-flex;
    position: relative;
}

#has-share i {
    border-radius: 2rem;
    padding: 0.62rem;
    font-size: var(--Large);
}

#has-share i:hover {
    --tst: 200ms ease-in;
    opacity: 1;
}

#has-share a:focus i,
#has-share i:hover {
    color: #fff !important;
}

/* Social sharing button */
#has-share .email {color: var(--mid)}
#has-share a:focus .email,
#has-share .email:hover {background: var(--mid)}
#has-share .bluesky {color: #1185fe}
#has-share a:focus .bluesky,
#has-share .bluesky:hover {background: #0072ce}
#has-share .facebook {color: #3b5998}
#has-share a:focus .facebook,
#has-share .facebook:hover {background: #2d4373}
#has-share .hackernews {color: #FF6600}
#has-share a:focus .hackernews,
#has-share .hackernews:hover {background: #FB6200}
#has-share .linkedin {color: #0077b5}
#has-share a:focus .linkedin,
#has-share .linkedin:hover {background: #046293}
#has-share .mastodon {color: #563acc}
#has-share a:focus .mastodon,
#has-share .mastodon:hover {background: #4f36b5}
#has-share .pinterest {color: #bd081c}
#has-share a:focus .pinterest,
#has-share .pinterest:hover {background: #8c0615}
#has-share .reddit {color: #5f99cf}
#has-share a:focus .reddit,
#has-share .reddit:hover {background: #3a80c1}
#has-share .telegram {color: #54A9EB}
#has-share a:focus .telegram,
#has-share .telegram:hover {background: #4B97D1}
#has-share .tumblr {color: #35465C}
#has-share a:focus .tumblr,
#has-share .tumblr:hover {background: #222d3c}
#has-share .twitter {color: #55acee}
#has-share a:focus .twitter,
#has-share .twitter:hover {background: #2795e9}
#has-share .vk {color: #507299}
#has-share a:focus .vk,
#has-share .vk:hover {background: #43648c}
#has-share .whatsapp {color: #25D366}
#has-share a:focus .whatsapp,
#has-share .whatsapp:hover {background: #1DA851}
#has-share .xing {color: #1a7576}
#has-share a:focus .xing,
#has-share .xing:hover {background: #114C4C}

@media only screen and (max-width: 844px) {

    #share {
        float: unset;
    }

    #has-share[open] #share {
        padding-left: 16.18pt;
    }

    #has-mastodon.active {
        flex: 0 0 100%;
    }

    #has-mastodon.active #mastodon {
        margin-bottom: 1ex;
        max-width: 27em;
    }

}