Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. a {
  2. text-decoration: none;
  3. color: #fff;
  4. outline: 0;
  5. }
  6.  
  7. a:hover{
  8. text-decoration:none;
  9. color:red;
  10. }
  11.  
  12. #menu{
  13. width: 100%;
  14. height: 53px;
  15. background: #464646;
  16. font-weight: bold;
  17. font-size: 1.1em;
  18. position: relative;
  19. text-align
  20. }
  21.  
  22. #menu ol {
  23. white-space: nowrap;
  24. position: relative;
  25. list-style: none;
  26. font-size: 0.9em;
  27. line-height: 43px;
  28. margin: 0;
  29. padding: 0;
  30. }
  31.  
  32. #menu>ol>li {
  33. display: inline-block;
  34. width: 20%
  35. }
  36.  
  37. #menu>ol>li>a {
  38. color: #ffffff;
  39. text-transform: uppercase;
  40. }
  41.  
  42. #menu>ol>li:hover::after {
  43. content: "";
  44. position: absolute;
  45. top: 37px;
  46. border-left: 10px solid transparent;
  47. border-right: 10px solid transparent;
  48. border-bottom: 7px solid #ffffff;
  49. }
  50.  
  51. ol,ul{
  52. list-style-type:none;
  53. margin-top:0px;
  54. }
  55.  
  56. ol li{
  57. display:inline-block;
  58. width:150px;
  59. height:40px;
  60. padding-top:10px;
  61. display:relative;
  62. float:left;
  63. }
  64.  
  65. ol li ul li {
  66. display:none;
  67. }
  68.  
  69. ol li:hover ul li{
  70. display:block;
  71. background-color: #333;
  72. border: 1px;
  73. width: 100%;
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement