Skip to content

Commit 5be4f18

Browse files
committed
Remove socials colors.
1 parent a407681 commit 5be4f18

File tree

3 files changed

+48
-47
lines changed

3 files changed

+48
-47
lines changed

src/components/SponsorCard.astro

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,44 @@ const socialLinks = [
185185
</div>
186186

187187
<style>
188+
189+
/* Platform-specific colors */
190+
.social-icon.facebook {
191+
color: #1877f2;
192+
}
193+
194+
.social-icon.twitter {
195+
color: #1da1f2;
196+
}
197+
198+
.social-icon.linkedin {
199+
color: #0a66c2;
200+
}
201+
202+
.social-icon.github {
203+
color: #333333;
204+
}
205+
206+
.social-icon.instagram {
207+
color: #e4405f;
208+
}
209+
210+
.social-icon.discord {
211+
color: #5865f2;
212+
}
213+
214+
.social-icon.mastodon {
215+
color: #6364ff;
216+
}
217+
218+
.social-icon.bluesky {
219+
color: #0085ff;
220+
}
221+
222+
.social-icon.website {
223+
color: #0077b5;
224+
}
225+
188226
/* Website button styles */
189227
.website-btn-container {
190228
display: flex;

src/data/links.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -247,15 +247,6 @@
247247
]
248248
}
249249
],
250-
"socials": {
251-
"mastodon": "https://fosstodon.org/@europython",
252-
"linkedin": "https://linkedin.com/company/europython",
253-
"github": "https://github.com/europython",
254-
"bluesky": "https://bsky.app/profile/europython.eu",
255-
"twitter": "https://x.com/europython",
256-
"instagram": "https://instagram.com/europython/",
257-
"youtube": "https://youtube.com/channel/UC98CzaYuFNAA_gOINFB0e4Q"
258-
},
259250
"terms": [
260251
{
261252
"name": "Contacts",
@@ -273,5 +264,14 @@
273264
"name": "Privacy Policy",
274265
"path": "https://www.europython-society.org/privacy/"
275266
}
276-
]
267+
],
268+
"socials": {
269+
"mastodon": "https://fosstodon.org/@europython",
270+
"linkedin": "https://linkedin.com/company/europython",
271+
"github": "https://github.com/europython",
272+
"bluesky": "https://bsky.app/profile/europython.eu",
273+
"twitter": "https://x.com/europython",
274+
"instagram": "https://instagram.com/europython/",
275+
"youtube": "https://youtube.com/channel/UC98CzaYuFNAA_gOINFB0e4Q"
276+
}
277277
}

src/styles/global.css

Lines changed: 0 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -271,43 +271,6 @@ main a[href^="#"]::before {
271271
background-color: white;
272272
}
273273

274-
/* Platform-specific colors */
275-
.social-icon.facebook {
276-
color: #1877f2;
277-
}
278-
279-
.social-icon.twitter {
280-
color: #1da1f2;
281-
}
282-
283-
.social-icon.linkedin {
284-
color: #0a66c2;
285-
}
286-
287-
.social-icon.github {
288-
color: #333333;
289-
}
290-
291-
.social-icon.instagram {
292-
color: #e4405f;
293-
}
294-
295-
.social-icon.discord {
296-
color: #5865f2;
297-
}
298-
299-
.social-icon.mastodon {
300-
color: #6364ff;
301-
}
302-
303-
.social-icon.bluesky {
304-
color: #0085ff;
305-
}
306-
307-
.social-icon.website {
308-
color: #0077b5;
309-
}
310-
311274
.social-icon {
312275
display: inline-flex;
313276
align-items: center;

0 commit comments

Comments
 (0)