Skip to content

Instantly share code, notes, and snippets.

@velopert
Last active January 14, 2017 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save velopert/e1c0082a571df480f50ffa0033ef9b6e to your computer and use it in GitHub Desktop.
Save velopert/e1c0082a571df480f50ffa0033ef9b6e to your computer and use it in GitHub Desktop.
.logo {
height: 3.5rem;
background-color: #212529;
width: 100vw;
line-height: 3.5rem;
color: white;
font-size: 1.5rem;
font-weight: bold;
text-align: center;
}
.menu {
background-color: #343a40;
height: 3.5rem;
}
.menu-item {
display: inline-block;
color: white;
font-size: 1rem;
line-height: 3.5rem;
width: 33.3333%;
text-align: center;
cursor: pointer;
transition: background-color 0.3s;
text-decoration: none;
}
.menu-item:hover {
background-color: #495057;
}
.menu-item:active, .menu-item.active {
background-color: #1862ab;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment