Advertisement
phpface

Kappa

Apr 18th, 2018
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.81 KB | None | 0 0
  1. /** Primary Menu **/
  2. #navigation .menu li a:hover:after,
  3. #navigation .menu .current-menu-item a:after{
  4.     background: #ccc;
  5. }
  6.  
  7. /** Widget **/
  8. .widget-title{
  9.     border-left-color: #ccc;
  10. }
  11.  
  12. /** Search form **/
  13. .search-wrapper button{
  14.     background: #ccc;
  15. }
  16.  
  17. .search-wrapper button:before {
  18.     border-color: transparent #ccc transparent;
  19. }
  20.  
  21. /** Category, Tag **/
  22. .post_tags a,
  23. span.cat a {
  24.     background: #333;
  25. }
  26.  
  27. /** Post pagination **/
  28. .page-numbers.current,
  29. .pagination a.active,
  30. .pagination a:hover{
  31.     background: #ccc;
  32.     border: 1px solid #ccc;
  33. }
  34.  
  35. /** Post review score **/
  36. .side-item-review .score{
  37.     background: #333;
  38. }
  39.  
  40. /** Review **/
  41.  
  42. .post-review {
  43.     border-top-color: #ccc;
  44. }
  45.  
  46. .review-score span{
  47.     border-color: #ccc;
  48. }
  49.  
  50. .thescore{
  51.     background: #666;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement