Skip to content
Merged
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
43 changes: 38 additions & 5 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,12 @@ body.home-page {
display: flex;
flex-direction: column;
}
/* background-attachment: fixed breaks on iOS Safari — use scroll on touch devices */
@media (hover: none) {
body.home-page {
background-attachment: scroll;
}
}
body:not(.home-page) {
background-color: #416e73;
}
Expand All @@ -271,7 +277,9 @@ body:not(.home-page) {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
padding: 1.2rem;
gap: 0.25rem 0;
background: rgba(0, 0, 0, 0.4);
}
.hero-header a {
Expand Down Expand Up @@ -302,9 +310,19 @@ footer {
background-color: rgba(0, 0, 0, 0.3);
padding: 1rem;
border-radius: 10px;
width: 33%;
width: 90%;
margin: 0.5rem auto 2rem auto;
}
@media (min-width: 640px) {
.player-container {
width: 60%;
}
}
@media (min-width: 1024px) {
.player-container {
width: 33%;
}
}


/* ---------- TYPOGRAPHY ---------- */
Expand Down Expand Up @@ -387,15 +405,20 @@ footer {

/* ---------- RESPONSIVE OVERRIDES ---------- */
@media (max-width: 768px) {
.hero-header {
padding: 0.75rem 0.5rem;
}

.hero-header a {
font-size: 1rem;
margin: 0 0.5rem;
font-size: 0.9rem;
margin: 0 0.35rem;
}


/* Override .main-title size within responsive breakpoint */
.main-title {
font-size: 2.5rem;
.main-title,
.text-center .main-title {
font-size: 2.5rem !important;
}
Comment thread
DavidKRK marked this conversation as resolved.


Expand Down Expand Up @@ -691,6 +714,7 @@ footer {
.language-selector {
gap: 10px;
justify-content: center;
flex-wrap: wrap;
}
.language-btn {
background: rgba(0,0,0,0.7);
Expand Down Expand Up @@ -785,3 +809,12 @@ footer {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

/* ---------- SHOP IMAGES ---------- */
.product-image img,
.lang-content img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
Loading