Skip to content
Closed
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
10 changes: 4 additions & 6 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,9 @@ body {
}


/* ---------- HOME PAGE BACKGROUND ---------- */
body.home-page {
/* ---------- BACKGROUND ---------- */
body {
background-color: #416e73;
background-image: url("../images/david_krk_owl.jpg");
background-size: cover;
background-position: left center;
Expand All @@ -253,13 +254,10 @@ body.home-page {
}
/* background-attachment: fixed breaks on iOS Safari — use scroll on touch devices */
@media (hover: none) {
body.home-page {
body {
background-attachment: scroll;
}
}
body:not(.home-page) {
background-color: #416e73;
}


/* ---------- MAIN WRAPPER ---------- */
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
4 changes: 0 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,6 @@ <h1 class="main-title">David KRK</h1>
</div>
</div>

<div class="image-container">
<img src="assets/images/david_krk_owl.jpg" alt="David KRK Owl" class="responsive-image">
</div>

<!-- Slider "player‑widget" (optionnel) -->
<section class="mt-8 mb-8 player-container">
<iframe title="Mixcloud player" width="100%" height="120"
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">

<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