mystickymenu
Last commit date
mystickymenu.css
12 years ago
mystickymenu.js
12 years ago
mystickymenu.php
12 years ago
readme.txt
12 years ago
screenshot-1.png
12 years ago
screenshot-2.png
12 years ago
mystickymenu.css
38 lines
| 1 | .navbar { |
| 2 | z-index: 100000; |
| 3 | /*add this line if you use 100% menu width, usually not needed*/ |
| 4 | /*max-width: 100% !important;*/ |
| 5 | text-transform:uppercase; |
| 6 | font-weight:bold; |
| 7 | -webkit-transition: 0.2s; |
| 8 | -moz-transition: 0.2s; |
| 9 | -o-transition: 0.2s; |
| 10 | transition: 0.2s; |
| 11 | } |
| 12 | .myfixed { |
| 13 | position: fixed; |
| 14 | top: 0; |
| 15 | -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=95)"; |
| 16 | filter: alpha(opacity=95); |
| 17 | opacity:.95; |
| 18 | background-color: #C94812 !important; |
| 19 | } |
| 20 | .nav-menu li a:hover { |
| 21 | background-color: #111 !important; |
| 22 | -webkit-transition: 0.6s; |
| 23 | -moz-transition: 0.6s; |
| 24 | -o-transition: 0.6s; |
| 25 | transition: 0.6s; |
| 26 | } |
| 27 | .nav-menu .current_page_item > a, |
| 28 | .nav-menu .current_page_ancestor > a, |
| 29 | .nav-menu .current-menu-item > a, |
| 30 | .nav-menu .current-menu-ancestor > a { |
| 31 | color: #fff !important; |
| 32 | font-style: normal !important; |
| 33 | background-color:#111 !important; |
| 34 | } |
| 35 | #wpadminbar { |
| 36 | position: absolute !important; |
| 37 | top: 0px !important; |
| 38 | } |