Advertisement
artemsemkin

Rhye: classic menu / submenu color adjustments

Aug 17th, 2022 (edited)
1,013
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* Top level items */
  2. #page-header .menu > li > a {
  3.   color: red; /* normal state */
  4. }
  5.  
  6. #page-header .menu > li > a:hover {
  7.   color: blue; /* hover state */
  8. }
  9.  
  10. /* Submenu items */
  11. #page-header .menu > li li > a {
  12.   color: green; /* normal state */
  13. }
  14.  
  15. #page-header .menu> li li > a:hover {
  16.   color: gray; /* hover state */
  17.   border-color: gray;
  18. }
  19.  
  20. /* Top level items [sticky] */
  21. #page-header.header_sticky .menu > li > a {
  22.   color: yellow; /* normal state */
  23. }
  24.  
  25. #page-header.header_sticky .menu > li > a:hover {
  26.   color: magenta; /* hover state */
  27. }
  28.  
  29. /* Submenu items [sticky] */
  30. #page-header.header_sticky .menu > li li > a {
  31.   color: mediumblue; /* normal state */
  32. }
  33.  
  34. #page-header.header_sticky .menu> li li > a:hover {
  35.   color: aquamarine; /* hover state */
  36.   border-color: aquamarine;
  37. }
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement