Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,8 @@ body.home-page {
}
body:not(.home-page) {
background-color: #416e73;
display: flex;
flex-direction: column;
}


Expand Down
2 changes: 1 addition & 1 deletion bio.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<!-- CSS -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body class="home-page">
<body class="bio-page">

<div class="background-image"></div>

Expand Down
2 changes: 1 addition & 1 deletion contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

</head>

<body class="home-page">
<body class="contact-page">

<div class="background-image"></div>

Expand Down
2 changes: 1 addition & 1 deletion event.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<link rel="stylesheet" href="assets/css/style.css">
<script src="https://cdn.jsdelivr.net/npm/howler@2.2.3/dist/howler.core.min.js"></script>
</head>
<body class="home-page">
<body class="event-page">

<div class="background-image"></div>

Expand Down
2 changes: 1 addition & 1 deletion music.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
}
</style>
</head>
<body class="home-page">
<body class="music-page">

Copilot AI Apr 16, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR description says the owl background is intended only for the home page, but several other pages in the repo still use class="home-page" on <body> (e.g., bio.html, contact.html, event.html, shop.html). If the intent is to restrict the owl background to index.html only, those pages would also need their <body> class updated (or the CSS selector changed to target index.html more specifically).

Copilot uses AI. Check for mistakes.

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Applied in 04804a0. Updated bio.html, contact.html, event.html, and shop.html to use page-specific classes (bio-page, contact-page, event-page, shop-page).

index.html is the only page that keeps class="home-page" and the owl background. All other pages now fall under body:not(.home-page) which applies the teal background (#416e73) and the flex column layout.


<div class="background-image"></div>

Expand Down
2 changes: 1 addition & 1 deletion shop.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<link rel="stylesheet" href="assets/css/style.css">
<script src="https://cdn.jsdelivr.net/npm/howler@2.2.3/dist/howler.core.min.js"></script>
</head>
<body class="home-page">
<body class="shop-page">

<div class="background-image"></div>

Expand Down
Loading