1 /** |
1 .wp-block-social-links{ |
2 * Colors |
2 background:none; |
3 */ |
3 box-sizing:border-box; |
4 /** |
4 margin-left:0; |
5 * Breakpoints & Media Queries |
5 padding-left:0; |
6 */ |
6 padding-right:0; |
7 /** |
7 text-indent:0; |
8 * SCSS Variables. |
8 } |
9 * |
9 .wp-block-social-links .wp-social-link a,.wp-block-social-links .wp-social-link a:hover{ |
10 * Please use variables from this sheet to ensure consistency across the UI. |
10 border-bottom:0; |
11 * Don't add to this sheet unless you're pretty sure the value will be reused in many places. |
11 box-shadow:none; |
12 * For example, don't add rules to this sheet that affect block visuals. It's purely for UI. |
12 text-decoration:none; |
13 */ |
13 } |
14 /** |
14 .wp-block-social-links .wp-social-link svg{ |
15 * Colors |
15 height:1em; |
16 */ |
16 width:1em; |
17 /** |
17 } |
18 * Fonts & basic variables. |
18 .wp-block-social-links .wp-social-link span:not(.screen-reader-text){ |
19 */ |
19 font-size:.65em; |
20 /** |
20 margin-left:.5em; |
21 * Grid System. |
21 margin-right:.5em; |
22 * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/ |
22 } |
23 */ |
23 .wp-block-social-links.has-small-icon-size{ |
24 /** |
24 font-size:16px; |
25 * Dimensions. |
25 } |
26 */ |
26 .wp-block-social-links,.wp-block-social-links.has-normal-icon-size{ |
27 /** |
27 font-size:24px; |
28 * Shadows. |
28 } |
29 */ |
29 .wp-block-social-links.has-large-icon-size{ |
30 /** |
30 font-size:36px; |
31 * Editor widths. |
31 } |
32 */ |
32 .wp-block-social-links.has-huge-icon-size{ |
33 /** |
33 font-size:48px; |
34 * Block & Editor UI. |
34 } |
35 */ |
35 .wp-block-social-links.aligncenter{ |
36 /** |
36 display:flex; |
37 * Block paddings. |
37 justify-content:center; |
38 */ |
38 } |
39 /** |
39 .wp-block-social-links.alignright{ |
40 * React Native specific. |
40 justify-content:flex-end; |
41 * These variables do not appear to be used anywhere else. |
41 } |
42 */ |
42 |
43 /** |
43 .wp-block-social-link{ |
44 * Converts a hex value into the rgb equivalent. |
44 border-radius:9999px; |
45 * |
45 display:block; |
46 * @param {string} hex - the hexadecimal value to convert |
46 height:auto; |
47 * @return {string} comma separated rgb values |
47 transition:transform .1s ease; |
48 */ |
48 } |
49 /** |
49 @media (prefers-reduced-motion:reduce){ |
50 * Breakpoint mixins |
50 .wp-block-social-link{ |
51 */ |
51 transition-delay:0s; |
52 /** |
52 transition-duration:0s; |
53 * Long content fade mixin |
|
54 * |
|
55 * Creates a fading overlay to signify that the content is longer |
|
56 * than the space allows. |
|
57 */ |
|
58 /** |
|
59 * Focus styles. |
|
60 */ |
|
61 /** |
|
62 * Applies editor left position to the selector passed as argument |
|
63 */ |
|
64 /** |
|
65 * Styles that are reused verbatim in a few places |
|
66 */ |
|
67 /** |
|
68 * Allows users to opt-out of animations via OS-level preferences. |
|
69 */ |
|
70 /** |
|
71 * Reset default styles for JavaScript UI based pages. |
|
72 * This is a WP-admin agnostic reset |
|
73 */ |
|
74 /** |
|
75 * Reset the WP Admin page styles for Gutenberg-like pages. |
|
76 */ |
|
77 .wp-block-social-links { |
|
78 padding-left: 0; |
|
79 padding-right: 0; |
|
80 text-indent: 0; |
|
81 margin-left: 0; |
|
82 background: none; |
|
83 } |
|
84 .wp-block-social-links .wp-social-link a, |
|
85 .wp-block-social-links .wp-social-link a:hover { |
|
86 text-decoration: none; |
|
87 border-bottom: 0; |
|
88 box-shadow: none; |
|
89 } |
|
90 .wp-block-social-links .wp-social-link a { |
|
91 padding: 0.25em; |
|
92 } |
|
93 .wp-block-social-links .wp-social-link svg { |
|
94 width: 1em; |
|
95 height: 1em; |
|
96 } |
|
97 .wp-block-social-links .wp-social-link span:not(.screen-reader-text) { |
|
98 margin-left: 0.5em; |
|
99 margin-right: 0.5em; |
|
100 font-size: 0.65em; |
|
101 } |
|
102 .wp-block-social-links.has-small-icon-size { |
|
103 font-size: 16px; |
|
104 } |
|
105 .wp-block-social-links, .wp-block-social-links.has-normal-icon-size { |
|
106 font-size: 24px; |
|
107 } |
|
108 .wp-block-social-links.has-large-icon-size { |
|
109 font-size: 36px; |
|
110 } |
|
111 .wp-block-social-links.has-huge-icon-size { |
|
112 font-size: 48px; |
|
113 } |
|
114 .wp-block-social-links.aligncenter { |
|
115 justify-content: center; |
|
116 display: flex; |
|
117 } |
|
118 .wp-block-social-links.alignright { |
|
119 justify-content: flex-end; |
|
120 } |
|
121 |
|
122 .wp-block-social-link { |
|
123 display: block; |
|
124 border-radius: 9999px; |
|
125 transition: transform 0.1s ease; |
|
126 height: auto; |
|
127 } |
|
128 @media (prefers-reduced-motion: reduce) { |
|
129 .wp-block-social-link { |
|
130 transition-duration: 0s; |
|
131 transition-delay: 0s; |
|
132 } |
53 } |
133 } |
54 } |
134 .wp-block-social-link a { |
55 .wp-block-social-link a{ |
135 align-items: center; |
56 align-items:center; |
136 display: flex; |
57 display:flex; |
137 line-height: 0; |
58 line-height:0; |
138 transition: transform 0.1s ease; |
59 transition:transform .1s ease; |
139 } |
60 } |
140 .wp-block-social-link:hover { |
61 .wp-block-social-link:hover{ |
141 transform: scale(1.1); |
62 transform:scale(1.1); |
142 } |
63 } |
143 |
64 |
144 .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor, .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:hover, .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:active, .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor:visited, |
65 .wp-block-social-links .wp-block-social-link.wp-social-link{ |
145 .wp-block-social-links .wp-block-social-link .wp-block-social-link-anchor svg { |
66 display:inline-block; |
146 color: currentColor; |
67 margin:0; |
147 fill: currentColor; |
68 padding:0; |
148 } |
69 } |
149 |
70 .wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor svg,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:active,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:hover,.wp-block-social-links .wp-block-social-link.wp-social-link .wp-block-social-link-anchor:visited{ |
150 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link { |
71 color:currentColor; |
151 background-color: #f0f0f0; |
72 fill:currentColor; |
152 color: #444; |
73 } |
153 } |
74 |
154 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-amazon { |
75 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link{ |
155 background-color: #f90; |
76 background-color:#f0f0f0; |
156 color: #fff; |
77 color:#444; |
157 } |
78 } |
158 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-bandcamp { |
79 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon{ |
159 background-color: #1ea0c3; |
80 background-color:#f90; |
160 color: #fff; |
81 color:#fff; |
161 } |
82 } |
162 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-behance { |
83 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp{ |
163 background-color: #0757fe; |
84 background-color:#1ea0c3; |
164 color: #fff; |
85 color:#fff; |
165 } |
86 } |
166 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-codepen { |
87 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance{ |
167 background-color: #1e1f26; |
88 background-color:#0757fe; |
168 color: #fff; |
89 color:#fff; |
169 } |
90 } |
170 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-deviantart { |
91 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky{ |
171 background-color: #02e49b; |
92 background-color:#0a7aff; |
172 color: #fff; |
93 color:#fff; |
173 } |
94 } |
174 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dribbble { |
95 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen{ |
175 background-color: #e94c89; |
96 background-color:#1e1f26; |
176 color: #fff; |
97 color:#fff; |
177 } |
98 } |
178 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-dropbox { |
99 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart{ |
179 background-color: #4280ff; |
100 background-color:#02e49b; |
180 color: #fff; |
101 color:#fff; |
181 } |
102 } |
182 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-etsy { |
103 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble{ |
183 background-color: #f45800; |
104 background-color:#e94c89; |
184 color: #fff; |
105 color:#fff; |
185 } |
106 } |
186 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-facebook { |
107 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox{ |
187 background-color: #1778f2; |
108 background-color:#4280ff; |
188 color: #fff; |
109 color:#fff; |
189 } |
110 } |
190 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx { |
111 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy{ |
191 background-color: #000; |
112 background-color:#f45800; |
192 color: #fff; |
113 color:#fff; |
193 } |
114 } |
194 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-flickr { |
115 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook{ |
195 background-color: #0461dd; |
116 background-color:#1778f2; |
196 color: #fff; |
117 color:#fff; |
197 } |
118 } |
198 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-foursquare { |
119 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx{ |
199 background-color: #e65678; |
120 background-color:#000; |
200 color: #fff; |
121 color:#fff; |
201 } |
122 } |
202 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-github { |
123 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr{ |
203 background-color: #24292d; |
124 background-color:#0461dd; |
204 color: #fff; |
125 color:#fff; |
205 } |
126 } |
206 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-goodreads { |
127 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare{ |
207 background-color: #eceadd; |
128 background-color:#e65678; |
208 color: #382110; |
129 color:#fff; |
209 } |
130 } |
210 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-google { |
131 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github{ |
211 background-color: #ea4434; |
132 background-color:#24292d; |
212 color: #fff; |
133 color:#fff; |
213 } |
134 } |
214 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-instagram { |
135 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads{ |
215 background-color: #f00075; |
136 background-color:#eceadd; |
216 color: #fff; |
137 color:#382110; |
217 } |
138 } |
218 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-lastfm { |
139 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google{ |
219 background-color: #e21b24; |
140 background-color:#ea4434; |
220 color: #fff; |
141 color:#fff; |
221 } |
142 } |
222 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-linkedin { |
143 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar{ |
223 background-color: #0d66c2; |
144 background-color:#1d4fc4; |
224 color: #fff; |
145 color:#fff; |
225 } |
146 } |
226 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-mastodon { |
147 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram{ |
227 background-color: #3288d4; |
148 background-color:#f00075; |
228 color: #fff; |
149 color:#fff; |
229 } |
150 } |
230 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-medium { |
151 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm{ |
231 background-color: #02ab6c; |
152 background-color:#e21b24; |
232 color: #fff; |
153 color:#fff; |
233 } |
154 } |
234 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-meetup { |
155 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin{ |
235 background-color: #f6405f; |
156 background-color:#0d66c2; |
236 color: #fff; |
157 color:#fff; |
237 } |
158 } |
238 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-patreon { |
159 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon{ |
239 background-color: #ff424d; |
160 background-color:#3288d4; |
240 color: #fff; |
161 color:#fff; |
241 } |
162 } |
242 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pinterest { |
163 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium{ |
243 background-color: #e60122; |
164 background-color:#000; |
244 color: #fff; |
165 color:#fff; |
245 } |
166 } |
246 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-pocket { |
167 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup{ |
247 background-color: #ef4155; |
168 background-color:#f6405f; |
248 color: #fff; |
169 color:#fff; |
249 } |
170 } |
250 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-reddit { |
171 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon{ |
251 background-color: #fe4500; |
172 background-color:#000; |
252 color: #fff; |
173 color:#fff; |
253 } |
174 } |
254 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-skype { |
175 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest{ |
255 background-color: #0478d7; |
176 background-color:#e60122; |
256 color: #fff; |
177 color:#fff; |
257 } |
178 } |
258 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-snapchat { |
179 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket{ |
259 background-color: #fefc00; |
180 background-color:#ef4155; |
260 color: #fff; |
181 color:#fff; |
261 stroke: #000; |
182 } |
262 } |
183 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit{ |
263 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-soundcloud { |
184 background-color:#ff4500; |
264 background-color: #ff5600; |
185 color:#fff; |
265 color: #fff; |
186 } |
266 } |
187 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype{ |
267 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-spotify { |
188 background-color:#0478d7; |
268 background-color: #1bd760; |
189 color:#fff; |
269 color: #fff; |
190 } |
270 } |
191 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat{ |
271 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-telegram { |
192 background-color:#fefc00; |
272 background-color: #2aabee; |
193 color:#fff; |
273 color: #fff; |
194 stroke:#000; |
274 } |
195 } |
275 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tiktok { |
196 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud{ |
276 background-color: #000; |
197 background-color:#ff5600; |
277 color: #fff; |
198 color:#fff; |
278 } |
199 } |
279 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-tumblr { |
200 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify{ |
280 background-color: #011835; |
201 background-color:#1bd760; |
281 color: #fff; |
202 color:#fff; |
282 } |
203 } |
283 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitch { |
204 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram{ |
284 background-color: #6440a4; |
205 background-color:#2aabee; |
285 color: #fff; |
206 color:#fff; |
286 } |
207 } |
287 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-twitter { |
208 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads{ |
288 background-color: #1da1f2; |
209 background-color:#000; |
289 color: #fff; |
210 color:#fff; |
290 } |
211 } |
291 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vimeo { |
212 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok{ |
292 background-color: #1eb7ea; |
213 background-color:#000; |
293 color: #fff; |
214 color:#fff; |
294 } |
215 } |
295 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-vk { |
216 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr{ |
296 background-color: #4680c2; |
217 background-color:#011835; |
297 color: #fff; |
218 color:#fff; |
298 } |
219 } |
299 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress { |
220 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch{ |
300 background-color: #3499cd; |
221 background-color:#6440a4; |
301 color: #fff; |
222 color:#fff; |
302 } |
223 } |
303 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-yelp { |
224 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter{ |
304 background-color: #d32422; |
225 background-color:#1da1f2; |
305 color: #fff; |
226 color:#fff; |
306 } |
227 } |
307 .wp-block-social-links:not(.is-style-logos-only) .wp-social-link-youtube { |
228 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo{ |
308 background-color: #f00; |
229 background-color:#1eb7ea; |
309 color: #fff; |
230 color:#fff; |
310 } |
231 } |
311 |
232 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk{ |
312 .wp-block-social-links.is-style-logos-only .wp-social-link { |
233 background-color:#4680c2; |
313 background: none; |
234 color:#fff; |
314 } |
235 } |
315 .wp-block-social-links.is-style-logos-only .wp-social-link a { |
236 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress{ |
316 padding: 0; |
237 background-color:#3499cd; |
317 } |
238 color:#fff; |
318 .wp-block-social-links.is-style-logos-only .wp-social-link svg { |
239 } |
319 width: 1.25em; |
240 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp{ |
320 height: 1.25em; |
241 background-color:#25d366; |
321 } |
242 color:#fff; |
322 .wp-block-social-links.is-style-logos-only .wp-social-link-amazon { |
243 } |
323 color: #f90; |
244 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x{ |
324 } |
245 background-color:#000; |
325 .wp-block-social-links.is-style-logos-only .wp-social-link-bandcamp { |
246 color:#fff; |
326 color: #1ea0c3; |
247 } |
327 } |
248 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp{ |
328 .wp-block-social-links.is-style-logos-only .wp-social-link-behance { |
249 background-color:#d32422; |
329 color: #0757fe; |
250 color:#fff; |
330 } |
251 } |
331 .wp-block-social-links.is-style-logos-only .wp-social-link-codepen { |
252 :where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube{ |
332 color: #1e1f26; |
253 background-color:red; |
333 } |
254 color:#fff; |
334 .wp-block-social-links.is-style-logos-only .wp-social-link-deviantart { |
255 } |
335 color: #02e49b; |
256 |
336 } |
257 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link{ |
337 .wp-block-social-links.is-style-logos-only .wp-social-link-dribbble { |
258 background:none; |
338 color: #e94c89; |
259 } |
339 } |
260 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg{ |
340 .wp-block-social-links.is-style-logos-only .wp-social-link-dropbox { |
261 height:1.25em; |
341 color: #4280ff; |
262 width:1.25em; |
342 } |
263 } |
343 .wp-block-social-links.is-style-logos-only .wp-social-link-etsy { |
264 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon{ |
344 color: #f45800; |
265 color:#f90; |
345 } |
266 } |
346 .wp-block-social-links.is-style-logos-only .wp-social-link-facebook { |
267 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp{ |
347 color: #1778f2; |
268 color:#1ea0c3; |
348 } |
269 } |
349 .wp-block-social-links.is-style-logos-only .wp-social-link-fivehundredpx { |
270 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance{ |
350 color: #000; |
271 color:#0757fe; |
351 } |
272 } |
352 .wp-block-social-links.is-style-logos-only .wp-social-link-flickr { |
273 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky{ |
353 color: #0461dd; |
274 color:#0a7aff; |
354 } |
275 } |
355 .wp-block-social-links.is-style-logos-only .wp-social-link-foursquare { |
276 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen{ |
356 color: #e65678; |
277 color:#1e1f26; |
357 } |
278 } |
358 .wp-block-social-links.is-style-logos-only .wp-social-link-github { |
279 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart{ |
359 color: #24292d; |
280 color:#02e49b; |
360 } |
281 } |
361 .wp-block-social-links.is-style-logos-only .wp-social-link-goodreads { |
282 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble{ |
362 color: #382110; |
283 color:#e94c89; |
363 } |
284 } |
364 .wp-block-social-links.is-style-logos-only .wp-social-link-google { |
285 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox{ |
365 color: #ea4434; |
286 color:#4280ff; |
366 } |
287 } |
367 .wp-block-social-links.is-style-logos-only .wp-social-link-instagram { |
288 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy{ |
368 color: #f00075; |
289 color:#f45800; |
369 } |
290 } |
370 .wp-block-social-links.is-style-logos-only .wp-social-link-lastfm { |
291 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook{ |
371 color: #e21b24; |
292 color:#1778f2; |
372 } |
293 } |
373 .wp-block-social-links.is-style-logos-only .wp-social-link-linkedin { |
294 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx{ |
374 color: #0d66c2; |
295 color:#000; |
375 } |
296 } |
376 .wp-block-social-links.is-style-logos-only .wp-social-link-mastodon { |
297 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr{ |
377 color: #3288d4; |
298 color:#0461dd; |
378 } |
299 } |
379 .wp-block-social-links.is-style-logos-only .wp-social-link-medium { |
300 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare{ |
380 color: #02ab6c; |
301 color:#e65678; |
381 } |
302 } |
382 .wp-block-social-links.is-style-logos-only .wp-social-link-meetup { |
303 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github{ |
383 color: #f6405f; |
304 color:#24292d; |
384 } |
305 } |
385 .wp-block-social-links.is-style-logos-only .wp-social-link-patreon { |
306 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads{ |
386 color: #ff424d; |
307 color:#382110; |
387 } |
308 } |
388 .wp-block-social-links.is-style-logos-only .wp-social-link-pinterest { |
309 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google{ |
389 color: #e60122; |
310 color:#ea4434; |
390 } |
311 } |
391 .wp-block-social-links.is-style-logos-only .wp-social-link-pocket { |
312 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar{ |
392 color: #ef4155; |
313 color:#1d4fc4; |
393 } |
314 } |
394 .wp-block-social-links.is-style-logos-only .wp-social-link-reddit { |
315 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram{ |
395 color: #fe4500; |
316 color:#f00075; |
396 } |
317 } |
397 .wp-block-social-links.is-style-logos-only .wp-social-link-skype { |
318 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm{ |
398 color: #0478d7; |
319 color:#e21b24; |
399 } |
320 } |
400 .wp-block-social-links.is-style-logos-only .wp-social-link-snapchat { |
321 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin{ |
401 color: #fff; |
322 color:#0d66c2; |
402 stroke: #000; |
323 } |
403 } |
324 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon{ |
404 .wp-block-social-links.is-style-logos-only .wp-social-link-soundcloud { |
325 color:#3288d4; |
405 color: #ff5600; |
326 } |
406 } |
327 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium{ |
407 .wp-block-social-links.is-style-logos-only .wp-social-link-spotify { |
328 color:#000; |
408 color: #1bd760; |
329 } |
409 } |
330 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup{ |
410 .wp-block-social-links.is-style-logos-only .wp-social-link-telegram { |
331 color:#f6405f; |
411 color: #2aabee; |
332 } |
412 } |
333 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon{ |
413 .wp-block-social-links.is-style-logos-only .wp-social-link-tiktok { |
334 color:#000; |
414 color: #000; |
335 } |
415 } |
336 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest{ |
416 .wp-block-social-links.is-style-logos-only .wp-social-link-tumblr { |
337 color:#e60122; |
417 color: #011835; |
338 } |
418 } |
339 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket{ |
419 .wp-block-social-links.is-style-logos-only .wp-social-link-twitch { |
340 color:#ef4155; |
420 color: #6440a4; |
341 } |
421 } |
342 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit{ |
422 .wp-block-social-links.is-style-logos-only .wp-social-link-twitter { |
343 color:#ff4500; |
423 color: #1da1f2; |
344 } |
424 } |
345 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype{ |
425 .wp-block-social-links.is-style-logos-only .wp-social-link-vimeo { |
346 color:#0478d7; |
426 color: #1eb7ea; |
347 } |
427 } |
348 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat{ |
428 .wp-block-social-links.is-style-logos-only .wp-social-link-vk { |
349 color:#fff; |
429 color: #4680c2; |
350 stroke:#000; |
430 } |
351 } |
431 .wp-block-social-links.is-style-logos-only .wp-social-link-wordpress { |
352 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud{ |
432 color: #3499cd; |
353 color:#ff5600; |
433 } |
354 } |
434 .wp-block-social-links.is-style-logos-only .wp-social-link-yelp { |
355 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify{ |
435 color: #d32422; |
356 color:#1bd760; |
436 } |
357 } |
437 .wp-block-social-links.is-style-logos-only .wp-social-link-youtube { |
358 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram{ |
438 color: #f00; |
359 color:#2aabee; |
439 } |
360 } |
440 |
361 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads{ |
441 .wp-block-social-links.is-style-pill-shape .wp-social-link { |
362 color:#000; |
442 width: auto; |
363 } |
443 } |
364 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok{ |
444 .wp-block-social-links.is-style-pill-shape .wp-social-link a { |
365 color:#000; |
445 padding-left: calc((2/3) * 1em); |
366 } |
446 padding-right: calc((2/3) * 1em); |
367 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr{ |
447 } |
368 color:#011835; |
|
369 } |
|
370 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch{ |
|
371 color:#6440a4; |
|
372 } |
|
373 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter{ |
|
374 color:#1da1f2; |
|
375 } |
|
376 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo{ |
|
377 color:#1eb7ea; |
|
378 } |
|
379 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk{ |
|
380 color:#4680c2; |
|
381 } |
|
382 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp{ |
|
383 color:#25d366; |
|
384 } |
|
385 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress{ |
|
386 color:#3499cd; |
|
387 } |
|
388 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x{ |
|
389 color:#000; |
|
390 } |
|
391 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp{ |
|
392 color:#d32422; |
|
393 } |
|
394 :where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube{ |
|
395 color:red; |
|
396 } |
|
397 |
|
398 .wp-block-social-links.is-style-pill-shape .wp-social-link{ |
|
399 width:auto; |
|
400 } |
|
401 |
|
402 :root :where(.wp-block-social-links .wp-social-link a){ |
|
403 padding:.25em; |
|
404 } |
|
405 |
|
406 :root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a){ |
|
407 padding:0; |
|
408 } |
|
409 |
|
410 :root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a){ |
|
411 padding-left:.66667em; |
|
412 padding-right:.66667em; |
|
413 } |
|
414 |
|
415 .wp-block-social-links:not(.has-icon-color):not(.has-icon-background-color) .wp-social-link-snapchat .wp-block-social-link-label{ |
|
416 color:#000; |
|
417 } |