chore: nav
This commit is contained in:
parent
8782e645cd
commit
c324fae7d7
5 changed files with 27 additions and 24 deletions
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.6.9",
|
"version": "19.6.10",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.6.9",
|
"version": "19.6.10",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.4.0",
|
"@cdransf/api-text": "^1.4.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "19.6.9",
|
"version": "19.6.10",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -6,13 +6,12 @@ export default async function () {
|
||||||
{ name: 'Watching', url: '/watching', icon: 'device-tv' },
|
{ name: 'Watching', url: '/watching', icon: 'device-tv' },
|
||||||
{ name: 'Books', url: '/books', icon: 'books' },
|
{ name: 'Books', url: '/books', icon: 'books' },
|
||||||
{ name: 'Links', icon: 'link' },
|
{ name: 'Links', icon: 'link' },
|
||||||
{ name: 'About', url: '/about', icon: 'info-square' },
|
{ name: 'About', url: '/about', icon: 'info-circle' },
|
||||||
{ name: 'Search', icon: 'search' },
|
{ name: 'Search', icon: 'search' },
|
||||||
{ name: 'Feeds', icon: 'rss' },
|
{ name: 'Feeds', icon: 'rss' },
|
||||||
{ name: 'Mastodon', icon: 'brand-mastodon' },
|
{ name: 'Mastodon', icon: 'brand-mastodon' },
|
||||||
],
|
],
|
||||||
footer: [
|
footer: [
|
||||||
{ name: 'Now' },
|
|
||||||
{ name: 'Uses' },
|
{ name: 'Uses' },
|
||||||
{ name: 'Colophon' },
|
{ name: 'Colophon' },
|
||||||
{ name: 'Blogroll' },
|
{ name: 'Blogroll' },
|
||||||
|
@ -25,6 +24,7 @@ export default async function () {
|
||||||
{ name: 'Mastodon', url: 'https://social.lol/@cory', icon: 'brand-mastodon' },
|
{ name: 'Mastodon', url: 'https://social.lol/@cory', icon: 'brand-mastodon' },
|
||||||
{ name: 'ListenBrainz', url: 'https://listenbrainz.org/user/cdransf/', icon: 'brain' },
|
{ name: 'ListenBrainz', url: 'https://listenbrainz.org/user/cdransf/', icon: 'brain' },
|
||||||
{ name: 'Coffee', url: 'https://buymeacoffee.com/cory', icon: 'coffee' },
|
{ name: 'Coffee', url: 'https://buymeacoffee.com/cory', icon: 'coffee' },
|
||||||
|
{ name: 'Now', url: '/now', icon: 'clock-hour-3' },
|
||||||
{ name: 'Webrings', url: '/webrings', icon: 'heart-handshake' },
|
{ name: 'Webrings', url: '/webrings', icon: 'heart-handshake' },
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
|
|
@ -352,18 +352,19 @@ nav .active svg {
|
||||||
.brand-github svg { stroke: var(--brand-github) !important; }
|
.brand-github svg { stroke: var(--brand-github) !important; }
|
||||||
.brand-npm svg { stroke: var(--brand-npm) !important; }
|
.brand-npm svg { stroke: var(--brand-npm) !important; }
|
||||||
.brand-mastodon svg { stroke: var(--brand-mastodon) !important; }
|
.brand-mastodon svg { stroke: var(--brand-mastodon) !important; }
|
||||||
.brain svg { stroke: var(--brand-listenbrainz) !important; }
|
|
||||||
.article svg { stroke: var(--posts) !important }
|
.article svg { stroke: var(--posts) !important }
|
||||||
.headphones svg { stroke: var(--music) !important; }
|
|
||||||
.device-tv svg { stroke: var(--tv) !important; }
|
|
||||||
.books svg { stroke: var(--books) !important; }
|
.books svg { stroke: var(--books) !important; }
|
||||||
.link svg { stroke: var(--links) !important; }
|
.brain svg { stroke: var(--brand-listenbrainz) !important; }
|
||||||
.info-square svg { stroke: var(--about) !important }
|
.clock-hour-3 svg { stroke: var(--now) !important; }
|
||||||
.search svg { stroke: var(--search) !important }
|
|
||||||
.coffee svg { stroke: var(--brand-buy-me-a-coffee) !important; }
|
.coffee svg { stroke: var(--brand-buy-me-a-coffee) !important; }
|
||||||
.heart-handshake svg { stroke: var(--webrings) !important; }
|
.device-tv svg { stroke: var(--tv) !important; }
|
||||||
.rss svg { stroke: var(--brand-rss) !important; }
|
|
||||||
.favorite svg { stroke: var(--favorite) !important }
|
.favorite svg { stroke: var(--favorite) !important }
|
||||||
|
.headphones svg { stroke: var(--music) !important; }
|
||||||
|
.heart-handshake svg { stroke: var(--webrings) !important; }
|
||||||
|
.info-circle svg { stroke: var(--about) !important }
|
||||||
|
.link svg { stroke: var(--links) !important; }
|
||||||
|
.rss svg { stroke: var(--brand-rss) !important; }
|
||||||
|
.search svg { stroke: var(--search) !important }
|
||||||
|
|
||||||
/* layout */
|
/* layout */
|
||||||
.default-wrapper {
|
.default-wrapper {
|
||||||
|
|
|
@ -49,19 +49,21 @@
|
||||||
--brand-listenbrainz: #e97941;
|
--brand-listenbrainz: #e97941;
|
||||||
--brand-buy-me-a-coffee: #40dca5;
|
--brand-buy-me-a-coffee: #40dca5;
|
||||||
--brand-rss: #f26522;
|
--brand-rss: #f26522;
|
||||||
--posts: #008080;
|
|
||||||
--music: #1e90ff;
|
|
||||||
--tv: #ff4500;
|
|
||||||
--books: #32cd32;
|
|
||||||
--links: #9370db;
|
|
||||||
--about: #ff6347;
|
--about: #ff6347;
|
||||||
--search: #4682b4;
|
--books: #32cd32;
|
||||||
--webrings: #da70d6;
|
|
||||||
--moon: #6a5acd;
|
|
||||||
--sun: #ffa500;
|
|
||||||
--favorite: #ff69b4;
|
|
||||||
--warning: #ff8c00;
|
|
||||||
--error: #d92525;
|
--error: #d92525;
|
||||||
|
--favorite: #ff69b4;
|
||||||
|
--links: #9370db;
|
||||||
|
--moon: #6a5acd;
|
||||||
|
--music: #1e90ff;
|
||||||
|
--now: #ff1493;
|
||||||
|
--posts: #008080;
|
||||||
|
--search: #4682b4;
|
||||||
|
--sun: #ffa500;
|
||||||
|
--tv: #ff4500;
|
||||||
|
--warning: #ff8c00;
|
||||||
|
--webrings: #da70d6;
|
||||||
|
|
||||||
/* fonts */
|
/* fonts */
|
||||||
--font-mono: MonoLisa, Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, ui-monospace, monospace;
|
--font-mono: MonoLisa, Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, ui-monospace, monospace;
|
||||||
|
|
Reference in a new issue