Facebook
From Chunky Motmot, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 208
  1. ol {
  2.         list-style-type:none;
  3.         margin: 0;
  4.         padding: 0;
  5.         font-size: 18px;
  6.         background-color: pink;
  7.         height: 2em;
  8.         line-height: 2em;
  9.         text-align: center;
  10. }
  11.  
  12. ol a {
  13.         display: block;
  14.         text-decoration: none;
  15.         color: purple;
  16.         padding: 5px;
  17. }
  18.  
  19. ol > li {
  20.         float: left;
  21.         margin-left: 1px;
  22.         height: 2em;
  23.         background-color: blue;
  24. }
  25.  
  26. ol > li:first-child {
  27.         margin: left;
  28. }
  29.  
  30. ol > li:hover {
  31.         background-color: orange;
  32. }
  33.  
  34. ol > li:hover>a {
  35.         color: red;
  36. }
  37.  
  38. ol > li:hover>ul {
  39.         display: block;
  40. }
  41.  
  42. ol > li > ul {
  43.         display: none;
  44.         list-style-type: none;
  45.         padding: 0;
  46. }
  47.  
  48. ol > li > ul > li {
  49.         position: relative;
  50.         background-color: #HEEE;
  51. }
  52.  
  53. ol > li > vl > li > z {
  54.         border: 1px solid #FFF;
  55. }
  56.  
  57. ol > li > ul > li:hover {
  58.         background-color: grey
  59. }
  60.  
  61. ol > li > ul > ul:hover > z {
  62.         color: green;
  63. }