Advertisement
prasannasp

Colour gradients for Blog tab in prasannasp.net

Feb 12th, 2012
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.50 KB | None | 0 0
  1. /*Blog current menu item and menu item hover*/
  2. #menu-item-427.current-menu-item, #menu-item-427:hover {
  3. background: linear-gradient(bottom, rgb(27,67,10) 9%, rgb(54,94,36) 55%, rgb(81,123,65) 78%) !important;
  4. background: -o-linear-gradient(bottom, rgb(27,67,10) 9%, rgb(54,94,36) 55%, rgb(81,123,65) 78%) !important;
  5. background: -moz-linear-gradient(bottom, rgb(27,67,10) 9%, rgb(54,94,36) 55%, rgb(81,123,65) 78%) !important;
  6. background: -webkit-linear-gradient(bottom, rgb(27,67,10) 9%, rgb(54,94,36) 55%, rgb(81,123,65) 78%) !important;
  7. background: -ms-linear-gradient(bottom, rgb(27,67,10) 9%, rgb(54,94,36) 55%, rgb(81,123,65) 78%) !important;
  8.  
  9. background: -webkit-gradient(
  10.     linear,
  11.     left bottom,
  12.     left top,
  13.     color-stop(0.09, rgb(27,67,10)),
  14.     color-stop(0.55, rgb(54,94,36)),
  15.     color-stop(0.78, rgb(81,123,65))
  16. ) !important;
  17. }
  18.  
  19. /*Blog current menu Hover*/
  20. #menu-item-427.current-menu-item:hover {
  21. background: linear-gradient(bottom, rgb(98,59,18) 7%, rgb(128,89,45) 54%) !important;
  22. background: -o-linear-gradient(bottom, rgb(98,59,18) 7%, rgb(128,89,45) 54%) !important;
  23. background: -moz-linear-gradient(bottom, rgb(98,59,18) 7%, rgb(128,89,45) 54%) !important;
  24. background: -webkit-linear-gradient(bottom, rgb(98,59,18) 7%, rgb(128,89,45) 54%) !important;
  25. background: -ms-linear-gradient(bottom, rgb(98,59,18) 7%, rgb(128,89,45) 54%) !important;
  26.  
  27. background: -webkit-gradient(
  28.     linear,
  29.     left bottom,
  30.     left top,
  31.     color-stop(0.07, rgb(98,59,18)),
  32.     color-stop(0.54, rgb(128,89,45))
  33. ) !important;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement