Skip to content

Instantly share code, notes, and snippets.

@funkybunch
Last active September 8, 2020 00:43
Show Gist options
  • Save funkybunch/4dade486d657db4a6b890b06f269c607 to your computer and use it in GitHub Desktop.
Save funkybunch/4dade486d657db4a6b890b06f269c607 to your computer and use it in GitHub Desktop.
Voter Registration Banner
<div class="banner">
<div class="main-container">
<img src="icon-vote-color.svg" alt="Register to Vote Icon" height="40" width="40" />
<p>Have you registered to vote? Register now and make an impact in the U.S. 2020 Election. <a href="https://www.vote.org/register-to-vote/" target="_blank">Register to vote now!</a></p>
</div>
</div>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
.banner {
background-color: #000;
}
.banner .main-container {
margin: 12px;
padding-top: 0;
padding-bottom: 0;
}
.banner {
position: relative;
}
.banner img {
position: absolute;
display: inline-block;
width: 40px;
height: 40px;
}
.banner p {
display: inline-block;
font-size: 16px;
color: #fff;
margin-bottom: 0;
margin-left: 60px;
padding-bottom: 0;
}
.banner p a {
color: #88c7e4;
}
.banner p a:hover {
color: #319fd1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment