Advertisement
phpface

Balder - Changing Navigation and Footer Background

Apr 4th, 2018
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.25 KB | None | 0 0
  1. /**
  2. * Main navigation
  3. **/
  4. .nav__holder,
  5. .nav__dropdown-menu{
  6.     background-color: #157554;
  7. }
  8.  
  9. .nav__holder a,
  10. .nav__holder li a{
  11.     color: #fff;
  12. }
  13.  
  14. .nav__holder li a,
  15. .nav__search-trigger{
  16.     border-left: 1px solid #188761;
  17.     border-right: 1px solid #188761;    
  18. }
  19.  
  20. .primary-menu .current-menu-parent>a,
  21. .primary-menu .current-menu-item>a,
  22. .floating-menu .current-menu-parent>a,
  23. .floating-menu .current-menu-item>a {
  24.     background: #22966e;
  25. }
  26.  
  27.  
  28. /**
  29. * Footer
  30. **/
  31. footer.footer{
  32.     background: #157554;
  33. }
  34.  
  35. /**
  36. * Footer Sidebar
  37. **/
  38.  
  39. .footer__widgets p,
  40. .footer__widgets a,
  41. .footer__widgets li a{
  42.     color: #fff;
  43. }
  44.  
  45. .footer__widgets .mc4wp-form-fields input[type=email],
  46. .footer__widgets .mc4wp-form-fields input[type=email]:focus{
  47.     background: inherit;
  48.     color: #fff;
  49.     border: 1px solid #fff;
  50. }
  51.  
  52. .footer__widgets .post-list-small__item,
  53. .footer__widgets .widget_nav_menu li {
  54.     border-bottom: 1px solid #0e815a;
  55. }
  56.  
  57. .footer__widgets .post-list-small__item:last-child,
  58. .footer__widgets .widget_nav_menu li:last-child{
  59.     border-bottom: none;
  60. }
  61.  
  62. /**
  63. * Footer Bottom
  64. **/
  65. .footer__bottom{
  66.     background: #035237;
  67.     color: #fff;
  68. }
  69.  
  70. .footer__bottom a,
  71. .footer__bottom li a{
  72.     color: #fff;
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement