chore: styles + links

This commit is contained in:
Cory Dransfeldt 2024-05-29 10:05:14 -07:00
parent dd4ff54a98
commit 2c40ef759a
No known key found for this signature in database
5 changed files with 104 additions and 123 deletions

View file

@ -21,9 +21,8 @@
@import url('./pages/blogroll.css') layer(page); @import url('./pages/blogroll.css') layer(page);
@import url('./pages/contact.css') layer(page); @import url('./pages/contact.css') layer(page);
@import url('./pages/links.css') layer(page); @import url('./pages/links.css') layer(page);
@import url('./pages/music.css') layer(page); @import url('./pages/media.css') layer(page);
@import url('./pages/post.css') layer(page); @import url('./pages/post.css') layer(page);
@import url('./pages/watching.css') layer(page);
@import url('./pages/webrings.css') layer(page); @import url('./pages/webrings.css') layer(page);
/* component styles */ /* component styles */

View file

@ -1,3 +1,76 @@
.artist-focus,
.genre-focus,
.watching-focus {
border-bottom: 0;
}
.artist-focus,
.watching {
& img {
border: 1px solid var(--accent-color);
width: 100%;
height: auto;
}
}
.artist-focus {
& .artist-display {
display: flex;
flex-direction: column;
gap: var(--sizing-xs);
margin-top: var(--sizing-base);
& .artist-meta {
display: flex;
flex-direction: column;
gap: var(--sizing-xs);
margin-top: var(--sizing-md);
& p {
margin: 0;
&.title {
font-size: var(--font-size-xl);
}
&.sub-meta {
font-size: var(--font-size-xs);
line-height: var(--line-height-xs);
svg {
width: 16px;
height: 16px;
margin-right: var(--sizing-xs);
}
}
&.favorite {
color: var(--favorite);
}
}
}
}
table th:first-of-type,
table td:first-of-type {
width: calc(var(--sizing-3xl) * 6);
}
}
@media screen and (min-width: 768px) {
.artist-focus {
& .artist-display {
flex-direction: row;
gap: var(--sizing-md);
margin: 0 0 var(--sizing-base) 0;
& .artist-meta {
margin-top: 0;
}
}
}
}
.watching { .watching {
&.page-header { &.page-header {
margin-bottom: var(--sizing-base); margin-bottom: var(--sizing-base);
@ -29,12 +102,6 @@
} }
} }
& img {
width: 100%;
height: auto;
border: 1px solid var(--accent-color);
}
&.shadow::after { &.shadow::after {
position: absolute; position: absolute;
z-index: 1; z-index: 1;
@ -64,7 +131,6 @@
& div { & div {
position: relative; position: relative;
}
& .meta-text { & .meta-text {
position: absolute; position: absolute;
@ -93,18 +159,10 @@
font-weight: var(--font-weight-bold); font-weight: var(--font-weight-bold);
} }
} }
& img {
width: 100%;
height: auto;
border: 1px solid var(--accent-color);
} }
} }
&.item { &.item {
position: relative;
width: 100%;
height: 100%;
position: relative; position: relative;
display: flex; display: flex;
overflow: hidden; overflow: hidden;
@ -123,8 +181,6 @@
} }
.watching-focus { .watching-focus {
border-bottom: 0;
& .watching-meta { & .watching-meta {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
@ -132,6 +188,8 @@
margin-top: var(--sizing-base); margin-top: var(--sizing-base);
& p { & p {
margin: 0;
&.title { &.title {
font-size: var(--font-size-xl); font-size: var(--font-size-xl);
} }
@ -140,12 +198,6 @@
font-size: var(--font-size-xs); font-size: var(--font-size-xs);
line-height: var(--line-height-xs); line-height: var(--line-height-xs);
} }
&.title,
&.rating,
&.sub-meta {
margin: 0;
}
} }
} }
@ -156,6 +208,6 @@
@media screen and (min-width: 768px) { @media screen and (min-width: 768px) {
.watching.grid { .watching.grid {
grid-template-columns: repeat(3,minmax(0,1fr)) grid-template-columns: repeat(3, minmax(0, 1fr));
} }
} }

View file

@ -1,70 +0,0 @@
.artist-focus {
& img {
border: 1px solid var(--accent-color);
}
& .artist-display {
display: flex;
flex-direction: column;
gap: var(--sizing-xs);
margin-top: var(--sizing-base);
& .artist-meta {
display: flex;
flex-direction: column;
gap: var(--sizing-xs);
margin-top: var(--sizing-md);
& p {
&.title {
font-size: var(--font-size-xl);
}
&.sub-meta {
font-size: var(--font-size-xs);
line-height: var(--line-height-xs);
}
&.title,
&.sub-meta {
margin: 0;
}
&.sub-meta svg {
width: 16px;
height: 16px;
margin-right: var(--sizing-xs);
}
&.favorite {
color: var(--favorite);
}
}
}
}
table th:first-of-type,
table td:first-of-type {
width: calc(var(--sizing-3xl) * 6);
}
}
.artist-focus,
.genre-focus {
border-bottom: 0;
}
@media screen and (min-width: 768px) {
.artist-focus {
& .artist-display {
margin-top: 0;
margin-bottom: var(--sizing-base);
flex-direction: row;
gap: var(--sizing-md);
& .artist-meta {
margin-top: 0;
}
}
}
}