added subscriptions

This commit is contained in:
Keep Creating Online
2025-02-09 19:50:33 -05:00
parent 779c61fcd9
commit 56b6bb988e
7 changed files with 724 additions and 92 deletions

View File

@@ -40,7 +40,7 @@ header img {
padding: 1rem;
}
/* Video Grid */
/* Video Grids */
#videoList {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
@@ -48,6 +48,22 @@ header img {
padding: 1.5rem 0;
}
/* Subscriptions grid: same pattern as #videoList */
#subscriptionsVideoList {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 2rem;
padding: 1.5rem 0;
}
/* Now also match for channelVideoList (channel profile) */
#channelVideoList {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 2rem;
padding: 1.5rem 0;
}
/* Video Cards */
.video-card {
background-color: var(--color-card);
@@ -525,4 +541,3 @@ footer a:hover {
#sidebar hr {
border-color: rgba(255, 255, 255, 0.1);
}