Created
May 23, 2012 21:20
-
-
Save neduma/2777910 to your computer and use it in GitHub Desktop.
-moz-box-shadow:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
padding: 40px; | |
background-color: #ccc; | |
} | |
ul li { | |
list-stlye-type: none; | |
display: inline-block; | |
line-height: 26px; | |
padding: 0 9px; | |
color: white; | |
/* font settings */ | |
font-weight: bold; | |
font-size:12px; | |
/* Radious */ | |
-webkit-border-radius: 4px; | |
-moz-border-radius: 4px; | |
border-radius: 4px; | |
/* Gradient */ | |
background: -moz-linear-gradient( | |
top, #f6e6b4 0%, #ed9017 100%); /* firefox */ | |
background: -webkit-gradient( | |
linear, left top, left bottom, | |
color-stop(0%,#237CB9), color-stop(100%,#0E3149)); | |
/* box-shadow */ | |
box-shadow: | |
0 1px 2px #fff, | |
0 -1px 1px #666, | |
inset 0 -1px 1px rgba(0,0,0,0.5), | |
inset 0 1px 1px rgba(255,255,255,0.8); | |
/* -moz-box-shadow: | |
0 1px 2px #fff, | |
0 -1px 1px #666, | |
inset 0 -1px 1px rgba(0,0,0,0.5), | |
inset 0 1px 1px rgba(255,255,255,0.8); | |
-webkit-box-shadow: | |
0 1px 2px #fff, | |
0 -1px 1px #666, | |
inset 0 -1px 1px rgba(0,0,0,0.5), | |
inset 0 1px 1px rgba(255,255,255,0.8);*/ | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li> <a> Home</a> </li> | |
<li> <a> Dashboard</a> </li> | |
<ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"view":"split-vertical","fontsize":"110","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment