Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
WeLeBro authored Sep 24, 2024
1 parent 20a2551 commit 1a1b622
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 7 deletions.
57 changes: 57 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -290,4 +290,61 @@ hr {
margin: 0;
grid-column: 1 / 3;
grid-row: 2;
}

/* ARTIST HEADER */

.artist-header {
display: grid;
height: 400px;
width: 375px;
grid-template-rows: auto auto 80px;
position: relative; /* Add this to position h1 absolutely */
}

.artist-header img {
justify-self: center; /* Center the image horizontally */
align-self: center; /* Center the image vertically */
object-fit: cover; /* Fill the section while maintaining aspect ratio */
grid-row: 1 / 4;
width: 100%; /* Ensure the image stays inside the section */
height: 100%; /* Ensure the image fills the section */
}

.artist-page h1 {
font-family: Helvetica;
font-weight: 1900;
font-size: 32.4px;
margin-left: 15px;
margin-top: 2px;
letter-spacing: -1px;
grid-row: 3;
position: absolute; /* Position h1 absolutely */
width: 100%; /* Ensure h1 spans the full width */
}

.ticket {
margin: 10px;
padding: 1em;
background-color: black;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
}

.ticket a {
display: flex;
align-items: center;
color: var(--text-color);
font-family: Paradiso-Bold;
font-size: 14px;
text-decoration: none;
flex-grow: 1;
}

.ticket img {
flex-grow: ;
justify-content: ;
width: 1.5em;
height: 1.5em;
}
16 changes: 9 additions & 7 deletions three-sacred-souls.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,23 @@
<a href="index.html"></a>
</header>

<main>
<main class="artist-page">

<section>
<section class="artist-header">
<h1>Three Sacred Souls</h1>

<img src="./images/thee-sacred-souls-banner.webp" alt="A picture of three man standing on rocks in front of a sky full of clouds during golden hour.">
</section>

<section>
<section class="ticket">
<a href="https://tickets.paradiso.nl/dd0bf8a1905049b28498ccefe51aab9d?error=interaction_required&state=yj867tzrni">
<h3>Waiting List</h3>

<h4>Ticket €34.30</h4>
<div>
<h3>Waiting List</h3>
<h4>Ticket €34.30</h4>
</div>

<svg src="#"></svg>
<img src="./images/arrow-r.svg"></img>
</a>
</section>

Expand Down Expand Up @@ -63,7 +65,7 @@ <h3>Main Hall</h3>

<p>Three Sacred Souls</p>

<iframe></iframe>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/artist/0oK5D6uPhGu4Jk2dbZfodU?utm_source=generator" width="100%" height="352" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

<section>

Expand Down

0 comments on commit 1a1b622

Please sign in to comment.