Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.01 KB | None | 0 0
  1. .site-nav ul {
  2.     margin: 0;
  3.     padding: 0;
  4. }
  5.  
  6. .site-nav ul:before, .site-nav ul:after { content: ""; display: table; }
  7. .site-nav ul:after { clear: both; }
  8. .site-nav ul { *zoom: 1; }
  9.  
  10. .site-nav ul li {
  11.     list-style: none;
  12.     float: left;
  13. }
  14.  
  15. .site-nav ul li a:link,
  16. .site-nav ul li a:visited {
  17.     display: block;
  18. }
  19.  
  20. .children-links {
  21.     margin-bottom: 20px;
  22.     font-size: 80%;
  23. }
  24.  
  25. .children-links a:link,
  26. .children-links a:visited {
  27.     text-decoration: none;
  28.     padding-bottom: 2px;
  29. }
  30.  
  31. .children-links ul {
  32.     float: left;
  33. }
  34.  
  35. .children-links li {
  36.     margin-right: 20px;
  37. }
  38.  
  39. .children-links .parent-link {
  40.     float: left;
  41.     margin-right: 20px;
  42.     padding-right: 20px;
  43.     border-right: 1px solid #DDD;
  44.     font-size: 120%;
  45.     font-weight: bold;
  46. }
  47.  
  48. .children-links .parent-link a:link,
  49. .children-links .parent-link a:visited {
  50.     color: #333;
  51. }
  52.  
  53. .children-links .current_page_item a:link,
  54. .children-links .current_page_item a:visited {
  55.     border-bottom: 1px solid #DDD;
  56.     color: #333;
  57.     cursor: default;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement