Skip to content

Instantly share code, notes, and snippets.

@magnusbonnevier
Created October 29, 2014 10:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save magnusbonnevier/ccd277228206bd3d6ab5 to your computer and use it in GitHub Desktop.
Save magnusbonnevier/ccd277228206bd3d6ab5 to your computer and use it in GitHub Desktop.
eyeGrid - topbar v1.0
/*
eyeGrid topbar v1.0 component
Usefull to add a simple topbar.
load after the 'eyeGrid_1.0.css' file.
*/
.eyeGrid-topbar-container {
position: relative;
display: block;
overflow: hidden;
width: 100%;
padding: 0;
margin-top: 0;
margin-left: auto;
margin-right: auto;
margin-bottom: 0;
clear: both;
/* color css */
background-color: #323232;
}
.eyeGrid-topbar-container > div {
padding: 0;
margin: 0;
display: inline-block;
}
.eyeGrid-topbar-container > div > a {
font-family: 'droid-sans-mono' ,arial, verdana, 'sans-serif';
font-size: 16px;
display: block;
padding: 10px;
text-decoration: none;
color: #fff;
}
.eyeGrid-topbar-container > div > a:link {
}
.eyeGrid-topbar-container > div > a:visited {
}
.eyeGrid-topbar-container > div > a:hover {
color: #fff;
text-decoration: none;
background-color: #999;
}
.eyeGrid-topbar-container > div > a:active {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment