Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. ol {
  2. list-style-type: none;
  3. padding: 0;
  4. margin: 0;
  5. font-size: 18px;
  6. height: 2em;
  7. line-height: 2em;
  8. text-align: center;
  9. }
  10.  
  11.  
  12. }
  13. ol>li {
  14. float: left;
  15. background-color: antiquewhite;
  16. width: 150px;
  17. }
  18. ol a {
  19. display: block;
  20. color: #000;
  21. text-decoration: none;
  22. padding: 0 5px;
  23. }
  24. ol>li>a:hover {
  25. color: #09C;
  26. }
  27. ol>li:hover {
  28. background-color: #EEE;
  29. }
  30. ol>li>ul {
  31. list-style-type: none;
  32. padding: 0;
  33. margin: 0;
  34. }
  35. ol>li {
  36. float: left;
  37. width: 150px;
  38. margin-left: 1px;
  39. }
  40. ol>li:first-child {
  41. margin-left: 0;
  42. }
  43. ol>li>ul>li>a {
  44. border-top: 1px solid #FFF;
  45. }
  46. ol>li>ul {
  47. display: none;
  48. }
  49. ol>li:hover>ul {
  50. display: block;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement