chore: add npm icon + link
This commit is contained in:
parent
de40e51577
commit
c18f28e89c
6 changed files with 14 additions and 9 deletions
8
package-lock.json
generated
8
package-lock.json
generated
|
@ -9,7 +9,7 @@
|
|||
"version": "6.6.3",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cdransf/theme-toggle": "^1.1.1",
|
||||
"@cdransf/theme-toggle": "^1.1.2",
|
||||
"@daviddarnes/mastodon-post": "^1.1.1",
|
||||
"@remy/webmention": "^1.5.0",
|
||||
"@zachleat/pagefind-search": "^1.0.3",
|
||||
|
@ -1230,9 +1230,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/@cdransf/theme-toggle": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/@cdransf/theme-toggle/-/theme-toggle-1.1.1.tgz",
|
||||
"integrity": "sha512-WUUj8rr6tf2vegJNFL31afWfHe9t05Ow8C5uK/sNLN3TXcNLlsG2oaYGQAajXkP2XOoaYte83RYu0wTCpdF58Q=="
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@cdransf/theme-toggle/-/theme-toggle-1.1.2.tgz",
|
||||
"integrity": "sha512-J46c75+Ie0fgWmSN3uCE8pTrCWklTgn3clBDtEvXNoJhXv145NcQ9Aj2ZBCMaV+BrhAgJjzCjzdaeH4UUJVF/g=="
|
||||
},
|
||||
"node_modules/@daviddarnes/mastodon-post": {
|
||||
"version": "1.1.1",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "6.6.3",
|
||||
"version": "6.6.4",
|
||||
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -20,7 +20,7 @@
|
|||
"author": "Cory Dransfeldt",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cdransf/theme-toggle": "^1.1.1",
|
||||
"@cdransf/theme-toggle": "^1.1.2",
|
||||
"@daviddarnes/mastodon-post": "^1.1.1",
|
||||
"@remy/webmention": "^1.5.0",
|
||||
"@zachleat/pagefind-search": "^1.0.3",
|
||||
|
|
|
@ -19,6 +19,7 @@ export default async function () {
|
|||
social: [
|
||||
{ name: 'Email', url: '/contact', icon: 'at' },
|
||||
{ name: 'GitHub', url: 'https://github.com/cdransf', icon: 'brand-github' },
|
||||
{ name: 'npm', url: 'https://www.npmjs.com/~cdransf', icon: 'brand-npm'},
|
||||
{ name: 'Mastodon', url: 'https://social.lol/@cory', icon: 'brand-mastodon' },
|
||||
{ name: 'Last.fm', url: 'https://www.last.fm/user/coryd_', icon: 'brand-lastfm' },
|
||||
{ name: 'Trakt', url: 'https://trakt.tv/users/cdransf', icon: 'device-tv' },
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
{% endcapture %}
|
||||
<style>{{ css }}</style>
|
||||
<template id="theme-toggle-template">
|
||||
<button class="theme__toggle">
|
||||
<button
|
||||
class="theme__toggle"
|
||||
aria-label="Toggle site theme">
|
||||
<span class="light">
|
||||
{% tablericon "sun" "Toggle light theme" %}
|
||||
</span>
|
||||
|
|
|
@ -232,6 +232,7 @@ nav ul li .active svg:hover {
|
|||
/* social icons */
|
||||
.at svg { stroke: var(--brand-hey) !important; }
|
||||
.brand-github svg { stroke: var(--brand-github) !important; }
|
||||
.brand-npm svg { stroke: var(--brand-npm) !important; }
|
||||
.brand-mastodon svg { stroke: var(--brand-mastodon) !important; }
|
||||
.brand-lastfm svg { stroke: var(--brand-lastfm) !important; }
|
||||
.device-tv svg { stroke: var(--brand-trakt) !important; }
|
||||
|
@ -271,7 +272,7 @@ article {
|
|||
}
|
||||
|
||||
footer nav:first-child {
|
||||
gap: .75rem;
|
||||
gap: .6rem;
|
||||
margin-top: 2rem;
|
||||
padding: 2rem 0 1rem;
|
||||
width: 100%;
|
||||
|
|
|
@ -42,8 +42,9 @@
|
|||
--accent-color-hover: var(--blue-800);
|
||||
--selection-color: var(--accent-color);
|
||||
|
||||
--brand-github: #333;
|
||||
--brand-hey: #5522fa;
|
||||
--brand-github: #333;
|
||||
--brand-npm: #cc3534;
|
||||
--brand-mastodon: #6364ff;
|
||||
--brand-lastfm: #d51007;
|
||||
--brand-trakt: #ed1c24;
|
||||
|
|
Reference in a new issue