Skip to content

Commit

Permalink
Add the anniversary logo to the homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
andiemmadavieswilcox committed Jul 28, 2024
1 parent adb3ce2 commit 70e1c9f
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
Binary file added anniversarylogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
<article>
<div id="content">
<h1>Home</h1>
<section id="anniversary">
<img src="anniversarylogo.png" width="300px" alt="Car’s 75th Anniversary and Club’s 50th Anniversary Commemorative Logo" />
<h2>Celebrating <span id="gold" class="years">fifty years</span> of the Triumph Mayflower Club and <span id="silver" class="years">seventy five years</span> of the Triumph Mayflower!</h2>
</section>
<p>Welcome to the online home of the Triumph Mayflower Club! Click on a section link below to get started…</p>
<section>
<h2><a href="{{ site.baseurl }}/about">About</a></h2>
Expand Down
41 changes: 41 additions & 0 deletions page.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,47 @@
color: grey;
}

#anniversary {
border: 1px solid darkgrey;
border-radius: 10px;

background-color: #fff3e8;

filter: drop-shadow(1px 3px 4px lightgrey);

display: flex;

color: #192a2c;
}

#anniversary h2 {
margin: 35px 10px;
border: none;

display: grid;

text-align: center;
align-items: center;

font-size: 16pt;
}

#anniversary .years {
font-size: 20pt;
}

#anniversary #gold {
color: #ffa602;
}

#anniversary #silver {
color: #a6a6a6;
}

#anniversary img {
margin: 2px 7px;
}

h1 {
text-align: center;
margin-top: 10px;
Expand Down

0 comments on commit 70e1c9f

Please sign in to comment.