Advertisement
laenavesse

Plurk Menu Thing

Feb 4th, 2016
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. /* MENU UNSELECTED ITEMS (I have mine set as transparent. If you want color, change "background" to "background-color: #HEXCODE;") */
  2. #filter_tab a.off_tab {
  3. background: transparent;
  4. border: none!important;
  5. color:#3b320d;
  6. }
  7.  
  8. /* MENU SELECTED ITEM */
  9. #filter_tab a.filter_selected {
  10. outline: 0 !important;
  11. background: #ffffff;
  12. color: #000000;
  13. -khtml-border-radius: 10px;
  14. -moz-border-radius: 10px;
  15. -webkit-border-radius: 10px;
  16. border-radius: 10px;
  17. border:1px white solid;
  18. filter: alpha(opacity=70) !important;
  19. -moz-opacity: 0.7 !important;
  20. opacity: 0.7 !important;
  21. }
  22.  
  23. /* MENU ITEMS ON HOVER */
  24. #filter_tab a.off_tab:hover {
  25. background: #96846a!important;
  26. color:#ffffff;
  27. text-decoration:none;
  28. -khtml-border-radius: 10px;
  29. -moz-border-radius: 10px;
  30. -webkit-border-radius: 10px;
  31. border-radius: 10px;
  32. border-right:1px white solid;
  33. border-bottom:1px white solid;
  34. filter: alpha(opacity=70) !important;
  35. -moz-opacity: 0.7 !important;
  36. opacity: 0.7 !important;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement