Created
October 6, 2016 03:32
-
-
Save amanat361/23a103dcf29c32bc621b124f6a102390 to your computer and use it in GitHub Desktop.
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 { | |
| list-style-type: none; | |
| margin: 0; | |
| padding: 0; | |
| overflow: hidden; | |
| background-color: #333; | |
| } | |
| li { | |
| float: left; | |
| } | |
| li a, .dropbtn { | |
| display: inline-block; | |
| color: white; | |
| text-align: center; | |
| padding: 14px 16px; | |
| text-decoration: none; | |
| } | |
| li a:hover, .dropdown:hover .dropbtn { | |
| background-color: #a9a9a9; | |
| } | |
| li.dropdown { | |
| display: inline-block; | |
| } | |
| .dropdown-content { | |
| display: none; | |
| position: absolute; | |
| background-color: #f9f9f9; | |
| min-width: 160px; | |
| box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); | |
| } | |
| .dropdown-content a { | |
| color: black; | |
| padding: 12px 16px; | |
| text-decoration: none; | |
| display: block; | |
| text-align: left; | |
| } | |
| body { | |
| margin:0; | |
| padding:0; | |
| background-color:#660000; | |
| } | |
| .dropdown-content a:hover {background-color: #a9a9a9} | |
| .dropdown:hover .dropdown-content { | |
| display: block; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment