Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update logo to frogtoberfest 2022 new design #63

Merged
merged 2 commits into from
Oct 20, 2022
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
Binary file modified src/assets/images/frogtoberfest2022-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/components/SiteTitle.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import frogtoberfestLogo from 'assets/images/frogtoberfest2022-logo.png';
import leapfrogOpenSourceLogo from 'assets/images/leapfrog-opensource-logo.png';

const SiteTitle = () => (
<div className="md:py-4 text-center bg-deep-cove">
<div className="mx-auto w-2/3 sm:w-1/2 py-4">
<div className="md:py-6 text-center bg-dark-black">
<div className="mx-auto w-2/3 sm:w-1/2 md:py-12">
<div className="w-48 mx-auto mb-2">
<img alt="Leapfrog Open Source" src={leapfrogOpenSourceLogo} />
</div>
<div className="text-white tracking-wide text-xs mb-4">PRESENTS</div>
<a className="block cursor-pointer no-underline" href={HOSTNAME} title="Frogtoberfest">
<img alt="Frogtoberfest Artwork" src={frogtoberfestLogo} />
<img alt="Frogtoberfest Artwork" src={frogtoberfestLogo} className="frogtoberfest-logo" />
</a>
</div>
</div>
Expand Down
9 changes: 9 additions & 0 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,15 @@ h1 {
color: #a52607;
}

.frogtoberfest-logo {
width: 322px;
height: auto;
}

.bg-dark-black {
background-color: #000000;
}

.bg-deep-cove {
background: #061244;
}