Skip to content

Instantly share code, notes, and snippets.

@jimmibond
Created February 14, 2018 12:17
Show Gist options
  • Save jimmibond/3ba5dfc77fe91685fa5958b7f355040f to your computer and use it in GitHub Desktop.
Save jimmibond/3ba5dfc77fe91685fa5958b7f355040f to your computer and use it in GitHub Desktop.
css-sample
.menu_simple {
width: 100%;
background-color: #005555;
}
.menu_simple ul {
margin: 0;
padding: 0;
float: left;
}
.menu_simple ul li {
display: inline;
}
.menu_simple ul li a {
float: left;
text-decoration: none;
color: white;
padding: 10.5px 11px;
background-color: #005555;
}
.menu_simple ul li a:visited {
color: white;
}
.menu_simple ul li a:hover, .menu_simple ul li .current {
color: white;
background-color: #5FD367;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment