Advertisement
Guest User

nav

a guest
Feb 17th, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.84 KB | None | 0 0
  1. .nav__absolute-dropdown {
  2.     -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.7), 2px 2px 5px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
  3.     box-shadow: 0 0 5px rgba(0, 0, 0, 0.7), 2px 2px 5px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
  4. }
  5. .nav__button {
  6.     color: #C7C7C7 !important;
  7.     text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3), 0px 0px 1px rgba(0, 0, 0, 0.91) !important;
  8. }
  9. .nav__button-container--active i {
  10.     color: #97CC97 !important;
  11.     text-shadow: 1px 1px 0 black !important;
  12. }
  13. .nav__button-container--inactive i {
  14.     color: #C0C1CE !important;
  15.     text-shadow: 1px 1px 0 black !important;
  16. }
  17. .nav__button-container.is-selected .nav__button {
  18.     background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0px, #999999), color-stop(5px, #8C8C8C), to(#5A5A5A)) !important;
  19.     background-image: -webkit-linear-gradient(#999999 0px, #8C8C8C 5px, #5A5A5A 100%) !important;
  20.     background-image: linear-gradient(#999999 0px, #8C8C8C 5px, #5A5A5A 100%) !important;
  21.     color: #1B1B1B;
  22.     text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3), 0px 0px 1px rgba(255, 255, 255, 0.5);
  23. }
  24.     .nav__button-container.is-selected .nav__button.is-selected {
  25.     background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0px, #9b9c9e), to(#4c505a));
  26.     background-image: -webkit-linear-gradient(#9b9c9e 0px, #4c505a 100%);
  27.     background-image: linear-gradient(#9b9c9e 0px, #4c505a 100%);
  28. }
  29. .nav__button-container:not(.nav__button-container-icon) .nav__button:hover {
  30.     background-image: -webkit-gradient(linear, left top, left bottom, from(#9ba2b0), to(#596070));
  31.     background-image: -webkit-linear-gradient(#9ba2b0 0px, #8c94a3 8px, #596070 100%)!important;
  32.     background-image: linear-gradient(#9ba2b0 0px, #8c94a3 8px, #596070 100%)!important;
  33.     color: #252b3d;
  34.     text-shadow: 0px 1px 0px #85caef;
  35. }
  36. .nav__notification {
  37.     color: #E0E0E0;
  38.     text-shadow: 1px 1px 1px black, 0px 0px 1px black;
  39. }
  40. nav__button-container.nav__button-container--notification.nav__button-container--inactive, .nav__button-container.nav__button-container--notification.nav__button-container--active {
  41.     background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0px, #676a74), color-stop(5px, #63666f), to(#42454e));
  42.     background-image: -webkit-linear-gradient(#676a74 0px, #63666f 5px, #42454e 100%);
  43.     background-image: linear-gradient(#676a74 0px, #63666f 5px, #42454e 100%);
  44.     border-radius: 4px;
  45. }
  46. .nav__button-container.is-selected .nav__button:hover:not(.is-selected) {
  47.     background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0px, #949494), to(#444444));
  48.     background-image: -webkit-linear-gradient(#949494 0px, #444444 100%);
  49.     background-image: linear-gradient(#949494 0px, #444444 100%);
  50.     text-shadow: 1px 1px 1px black, 0px 0px 1px black !important;
  51. }
  52. .nav__button-container:not(.nav__button-container--notification) .nav__button.is-selected {
  53.     -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3) inset;
  54.     background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0px, #646773), color-stop(5px, #545866), to(#393c49));
  55.     background-image: -webkit-linear-gradient(#646773 0px, #545866 5px, #393c49 100%);
  56.     background-image: linear-gradient(#646773 0px, #545866 5px, #393c49 100%);
  57.     box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3) inset;
  58. }
  59. .nav__button-container:not(.nav__button-container--notification) .nav__button:hover {
  60.     background-image: linear-gradient(#9ba2b0 0px, #8c94a3 8px, #596070 100%)!important;
  61.     background-image: -moz-linear-gradient(#9ba2b0 0px, #8c94a3 8px, #596070 100%)!important;
  62.     background-image: -webkit-linear-gradient(#9ba2b0 0px, #8c94a3 8px, #596070 100%)!important;
  63.     color: #D0D0D0 !important;
  64.     text-shadow: 1px 1px 1px black, 0px 0px 1px black !important;
  65. }
  66. .nav__button-container:not(.nav__button-container--notification) {
  67.     background-image: linear-gradient(#676a74 0px, #63666f 5px, #42454e 100%) !important;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement