fix: title + styles
This commit is contained in:
parent
f4530c30e2
commit
ee721631b9
16 changed files with 82 additions and 95 deletions
|
@ -109,7 +109,7 @@ export default {
|
||||||
entryData.forEach((entry) => {
|
entryData.forEach((entry) => {
|
||||||
const md = mdGenerator()
|
const md = mdGenerator()
|
||||||
const dateKey = Object.keys(entry).find(key => key.includes('date'))
|
const dateKey = Object.keys(entry).find(key => key.includes('date'))
|
||||||
let { title, image, url, slug, link, authors, description, type, content, backdrop, rating, tags } = entry
|
let { artist, authors, backdrop, content, description, image, link, rating, slug, title, url, tags, type } = entry
|
||||||
const feedNote = '<hr/><p>This is a full text feed, but not all content can be rendered perfectly within the feed. If something looks off, feel free to <a href="https://coryd.dev">visit my site</a> for the original post.</p>'
|
const feedNote = '<hr/><p>This is a full text feed, but not all content can be rendered perfectly within the feed. If something looks off, feel free to <a href="https://coryd.dev">visit my site</a> for the original post.</p>'
|
||||||
const processedEntry = { title: title.trim(), date: new Date(entry[dateKey]), content: description }
|
const processedEntry = { title: title.trim(), date: new Date(entry[dateKey]), content: description }
|
||||||
|
|
||||||
|
@ -137,6 +137,7 @@ export default {
|
||||||
if (rating) processedEntry['rating'] = rating
|
if (rating) processedEntry['rating'] = rating
|
||||||
if (tags) processedEntry['tags'] = tags
|
if (tags) processedEntry['tags'] = tags
|
||||||
if (type === 'album-release') {
|
if (type === 'album-release') {
|
||||||
|
if (artist) processedEntry['title'] = `${title} by ${artist}`
|
||||||
processedEntry['excerpt'] = 'Check out the new release!'
|
processedEntry['excerpt'] = 'Check out the new release!'
|
||||||
processedEntry['content'] = 'Check out the new release!'
|
processedEntry['content'] = 'Check out the new release!'
|
||||||
}
|
}
|
||||||
|
@ -156,43 +157,45 @@ export default {
|
||||||
url: item['url'],
|
url: item['url'],
|
||||||
type: item['type']
|
type: item['type']
|
||||||
}
|
}
|
||||||
if (item['type'] === 'artist') {
|
|
||||||
normalized['title'] = item['title']
|
switch (item['type']) {
|
||||||
normalized['alt'] = `${item['plays']} plays of ${item['title']}`
|
case 'artist':
|
||||||
normalized['subtext'] = `${item['plays']} plays`
|
normalized.title = item['title']
|
||||||
|
normalized.alt = `${item['plays']} plays of ${item['title']}`
|
||||||
|
normalized.subtext = `${item['plays']} plays`
|
||||||
|
break
|
||||||
|
case 'album':
|
||||||
|
normalized.title = item['title']
|
||||||
|
normalized.alt = `${item['title']} by ${item['artist']}`
|
||||||
|
normalized.subtext = `${item['artist']}`
|
||||||
|
break
|
||||||
|
case 'album-release':
|
||||||
|
normalized.title = item['title']
|
||||||
|
normalized.alt = `${item['title']} by ${item['artist']}`
|
||||||
|
normalized.subtext = `${item['artist']} / ${item['date']}`
|
||||||
|
break
|
||||||
|
case 'movie':
|
||||||
|
normalized.title = item['title']
|
||||||
|
normalized.alt = item['title']
|
||||||
|
normalized.rating = item['rating']
|
||||||
|
normalized.favorite = item['favorite']
|
||||||
|
normalized.subtext = item.rating ? `${item['rating']} (${item['year']})` : `(${item['year']})`
|
||||||
|
break
|
||||||
|
case 'book':
|
||||||
|
normalized.title = `${item['title']} by ${item['author']}`
|
||||||
|
if (item['rating']) {
|
||||||
|
normalized.rating = item['rating']
|
||||||
|
normalized.subtext = item['rating']
|
||||||
}
|
}
|
||||||
if (item['type'] === 'album') {
|
break
|
||||||
normalized['title'] = item['title']
|
case 'tv':
|
||||||
normalized['alt'] = `${item['title']} by ${item['artist']}`
|
case 'tv-range':
|
||||||
normalized['subtext'] = `${item['artist']}`
|
normalized.title = item['name']
|
||||||
}
|
normalized.alt = `${item['subtext']} ${item['type'] === 'tv' ? 'of' : 'from'} ${item['name']}`
|
||||||
if (item['type'] === 'album-release') {
|
normalized.subtext = item['subtext']
|
||||||
normalized['title'] = item['title']
|
break
|
||||||
normalized['alt'] = `${item['title']} by ${item['artist']}`
|
|
||||||
normalized['subtext'] = `${item['artist']} / ${item['date']}`
|
|
||||||
}
|
|
||||||
if (item['type'] === 'movie') {
|
|
||||||
normalized['title'] = item['title']
|
|
||||||
normalized['alt'] = item['title']
|
|
||||||
normalized['rating'] = item['rating']
|
|
||||||
normalized['favorite'] = item['favorite']
|
|
||||||
normalized['subtext'] = item.rating ? `${item['rating']} (${item['year']})` : `(${item['year']})`
|
|
||||||
}
|
|
||||||
if (item['type'] === 'book') {
|
|
||||||
normalized['title'] = `${item['title']} by ${item['author']}`
|
|
||||||
normalized['rating'] = item['rating']
|
|
||||||
if (item['rating']) normalized['subtext'] = item['rating']
|
|
||||||
}
|
|
||||||
if (item['type'] === 'tv') {
|
|
||||||
normalized['title'] = item['name']
|
|
||||||
normalized['alt'] = `${item['subtext']} of ${item['name']}`
|
|
||||||
normalized['subtext'] = item['subtext']
|
|
||||||
}
|
|
||||||
if (item['type'] === 'tv-range') {
|
|
||||||
normalized['title'] = item['name']
|
|
||||||
normalized['alt'] = `${item['subtext']} from ${item['name']}`
|
|
||||||
normalized['subtext'] = item['subtext']
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return normalized
|
return normalized
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
12
package-lock.json
generated
12
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.5.1",
|
"version": "24.5.2",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.5.1",
|
"version": "24.5.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.5.0",
|
"@cdransf/api-text": "^1.5.0",
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
"markdown-it": "^14.1.0",
|
"markdown-it": "^14.1.0",
|
||||||
"markdown-it-anchor": "^9.1.0",
|
"markdown-it-anchor": "^9.1.0",
|
||||||
"markdown-it-footnote": "^4.0.0",
|
"markdown-it-footnote": "^4.0.0",
|
||||||
"postcss": "^8.4.43",
|
"postcss": "^8.4.44",
|
||||||
"postcss-cli": "^11.0.0",
|
"postcss-cli": "^11.0.0",
|
||||||
"postcss-import": "^16.1.0",
|
"postcss-import": "^16.1.0",
|
||||||
"postcss-import-ext-glob": "^2.1.1",
|
"postcss-import-ext-glob": "^2.1.1",
|
||||||
|
@ -3261,9 +3261,9 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/postcss": {
|
"node_modules/postcss": {
|
||||||
"version": "8.4.43",
|
"version": "8.4.44",
|
||||||
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.43.tgz",
|
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.44.tgz",
|
||||||
"integrity": "sha512-gJAQVYbh5R3gYm33FijzCZj7CHyQ3hWMgJMprLUlIYqCwTeZhBQ19wp0e9mA25BUbEvY5+EXuuaAjqQsrBxQBQ==",
|
"integrity": "sha512-Aweb9unOEpQ3ezu4Q00DPvvM2ZTUitJdNKeP/+uQgr1IBIqu574IaZoURId7BKtWMREwzKa9OgzPzezWGPWFQw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"funding": [
|
"funding": [
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "24.5.1",
|
"version": "24.5.2",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
"markdown-it": "^14.1.0",
|
"markdown-it": "^14.1.0",
|
||||||
"markdown-it-anchor": "^9.1.0",
|
"markdown-it-anchor": "^9.1.0",
|
||||||
"markdown-it-footnote": "^4.0.0",
|
"markdown-it-footnote": "^4.0.0",
|
||||||
"postcss": "^8.4.43",
|
"postcss": "^8.4.44",
|
||||||
"postcss-cli": "^11.0.0",
|
"postcss-cli": "^11.0.0",
|
||||||
"postcss-import": "^16.1.0",
|
"postcss-import": "^16.1.0",
|
||||||
"postcss-import-ext-glob": "^2.1.1",
|
"postcss-import-ext-glob": "^2.1.1",
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
& a {
|
& a {
|
||||||
outline: 0;
|
outline: none;
|
||||||
|
|
||||||
&:focus img,
|
&:focus img,
|
||||||
&:focus-within img {
|
&:focus-within img {
|
||||||
|
|
|
@ -32,9 +32,17 @@ input:focus,
|
||||||
input:focus-within,
|
input:focus-within,
|
||||||
textarea:focus,
|
textarea:focus,
|
||||||
textarea:focus-within {
|
textarea:focus-within {
|
||||||
|
padding: calc(var(--sizing-sm) + 1px);
|
||||||
|
}
|
||||||
|
|
||||||
|
input:focus,
|
||||||
|
input:focus-within,
|
||||||
|
textarea:focus,
|
||||||
|
textarea:focus-within,
|
||||||
|
select:focus,
|
||||||
|
select:focus-within {
|
||||||
border: 0;
|
border: 0;
|
||||||
outline: var(--outline-default);
|
outline: var(--outline-default);
|
||||||
padding: calc(var(--sizing-sm) + 1px);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
select {
|
select {
|
||||||
|
@ -43,12 +51,6 @@ select {
|
||||||
border-radius: var(--border-radius-slight);
|
border-radius: var(--border-radius-slight);
|
||||||
background-color: var(--background-color);
|
background-color: var(--background-color);
|
||||||
padding: var(--sizing-xs) var(--sizing-sm);
|
padding: var(--sizing-xs) var(--sizing-sm);
|
||||||
|
|
||||||
&:focus,
|
|
||||||
&:focus-within {
|
|
||||||
border: 0;
|
|
||||||
outline: var(--outline-default)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.search__form {
|
.search__form {
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
content: '';
|
content: '';
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
box-shadow: inset 0 -85px 60px -60px var(--black);
|
box-shadow: var(--box-shadow-media);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border: var(--border-default);
|
border: var(--border-default);
|
||||||
|
|
|
@ -24,8 +24,12 @@
|
||||||
|
|
||||||
.menu-button-container {
|
.menu-button-container {
|
||||||
display: none;
|
display: none;
|
||||||
|
outline: none;
|
||||||
margin-left: var(--sizing-md);
|
margin-left: var(--sizing-md);
|
||||||
outline: 0;
|
|
||||||
|
& svg {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
&:focus,
|
&:focus,
|
||||||
&:focus-within {
|
&:focus-within {
|
||||||
|
@ -33,10 +37,6 @@
|
||||||
border-radius: var(--border-radius-slight);
|
border-radius: var(--border-radius-slight);
|
||||||
}
|
}
|
||||||
|
|
||||||
& svg {
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover svg,
|
&:hover svg,
|
||||||
&:focus svg,
|
&:focus svg,
|
||||||
&:focus-within svg,
|
&:focus-within svg,
|
||||||
|
@ -123,7 +123,7 @@
|
||||||
|
|
||||||
&:focus a,
|
&:focus a,
|
||||||
&:focus-within a {
|
&:focus-within a {
|
||||||
outline: 0;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus,
|
&:focus,
|
||||||
|
|
|
@ -20,30 +20,8 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: var(--sizing-lg);
|
top: var(--sizing-lg);
|
||||||
right: var(--sizing-lg);
|
right: var(--sizing-lg);
|
||||||
cursor: pointer;
|
|
||||||
height: var(--sizing-svg-base);
|
height: var(--sizing-svg-base);
|
||||||
width: var(--sizing-svg-base);
|
width: var(--sizing-svg-base);
|
||||||
|
|
||||||
&:focus svg,
|
|
||||||
&:focus-within svg {
|
|
||||||
outline: var(--outline-default);
|
|
||||||
border-radius: var(--border-radius-slight);
|
|
||||||
}
|
|
||||||
|
|
||||||
& svg {
|
|
||||||
stroke: var(--accent-color);
|
|
||||||
|
|
||||||
&:focus {
|
|
||||||
outline: var(--outline-default);
|
|
||||||
border-radius: var(--border-radius-slight);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover,
|
|
||||||
&:focus,
|
|
||||||
&:active {
|
|
||||||
stroke: var(--accent-color-hover);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -60,7 +38,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.modal-toggle {
|
.modal-toggle,
|
||||||
|
.modal-close {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
|
|
@ -61,7 +61,7 @@
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
|
||||||
& a {
|
& a {
|
||||||
outline: 0;
|
outline: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:focus,
|
&:focus,
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
.progress-bar-wrapper {
|
.progress-bar-wrapper {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
height: var(--sizing-lg);
|
||||||
|
width: 100%;
|
||||||
background-color: rgba(217, 222, 228, .6);
|
background-color: rgba(217, 222, 228, .6);
|
||||||
border-radius: var(--border-radius-full);
|
border-radius: var(--border-radius-full);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
height: var(--sizing-lg);
|
|
||||||
width: 100%;
|
|
||||||
|
|
||||||
& .progress-bar {
|
& .progress-bar {
|
||||||
background-color: var(--accent-color);
|
background-color: var(--accent-color);
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
content: '';
|
content: '';
|
||||||
box-shadow: inset 0 -120px 60px -60px var(--background-color);
|
box-shadow: var(--box-shadow-text-toggle);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 20%;
|
height: 20%;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
|
|
|
@ -123,6 +123,10 @@
|
||||||
--stroke-width-bold: 2;
|
--stroke-width-bold: 2;
|
||||||
--inline-margin-bottom: -5px;
|
--inline-margin-bottom: -5px;
|
||||||
|
|
||||||
|
/* shadows */
|
||||||
|
--box-shadow-media: inset 0 -85px 60px -60px var(--black);
|
||||||
|
--box-shadow-text-toggle: inset 0 -120px 60px -60px var(--background-color);
|
||||||
|
|
||||||
/* input accent color */
|
/* input accent color */
|
||||||
accent-color: var(--accent-color);
|
accent-color: var(--accent-color);
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
& a {
|
& a {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
outline: 0;
|
outline: none;
|
||||||
|
|
||||||
&:focus svg,
|
&:focus svg,
|
||||||
&:focus-within svg {
|
&:focus-within svg {
|
||||||
|
|
|
@ -17,7 +17,6 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
& img {
|
& img {
|
||||||
max-width: calc(var(--sizing-3xl) * 4);
|
max-width: calc(var(--sizing-3xl) * 4);
|
||||||
height: auto;
|
height: auto;
|
||||||
|
@ -115,10 +114,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
|
||||||
margin: var(--sizing-base) 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 768px) {
|
@media screen and (min-width: 768px) {
|
||||||
|
|
|
@ -18,6 +18,10 @@
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
min-height: 60vh;
|
min-height: 60vh;
|
||||||
|
|
||||||
|
h2 {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (min-width: 768px) {
|
@media screen and (min-width: 768px) {
|
||||||
|
|
|
@ -58,7 +58,7 @@ a:active > .watching.hero::after {
|
||||||
content: '';
|
content: '';
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
box-shadow: inset 0 -85px 60px -60px var(--black);
|
box-shadow: var(--box-shadow-media);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border: var(--border-default);
|
border: var(--border-default);
|
||||||
|
@ -140,7 +140,7 @@ a:active > .watching.hero::after {
|
||||||
content: '';
|
content: '';
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
box-shadow: inset 0 -85px 60px -60px var(--black);
|
box-shadow: var(--box-shadow-media);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
border: var(--border-default);
|
border: var(--border-default);
|
||||||
|
|
Reference in a new issue