Skip to content

Instantly share code, notes, and snippets.

@saigowthamr
Last active March 21, 2018 11:15
Show Gist options
  • Select an option

  • Save saigowthamr/0e7cf5c3ed753e52ac929f2d90bf9e56 to your computer and use it in GitHub Desktop.

Select an option

Save saigowthamr/0e7cf5c3ed753e52ac929f2d90bf9e56 to your computer and use it in GitHub Desktop.
stencil-header
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
header{
padding: 1rem;
max-width: 100rem;
margin-left:auto;
margin-right: auto;
background-color: rgb(255, 195, 127);
color: #3E3A4A;
}
nav{
display: flex;
list-style: none;
justify-content: space-around;
width: 90%;
margin-left: 2rem;
padding: .2rem;
}
li{
background-color: rgb(236, 139, 13);
padding: .4rem;
width: 30%;
font-size: 1.3rem;
text-align: center;
letter-spacing: .1rem;
color: rgb(255, 255, 255);
box-shadow: 0 .2rem .2rem black;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment