Guest User

Untitled

a guest
Dec 10th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. #top-nav{
  2. float: left;
  3. margin: 0;
  4. padding: 0;
  5. .hasChildren {
  6. position: absolute;
  7. width: 5px; height: 5px;
  8. background: black;
  9. right : 0;
  10. bottom: 0;
  11. }
  12. li{
  13. list-style: none;
  14. position: relative;
  15. float: left;
  16. a{
  17. float: left;
  18. font-size:20px;
  19. line-height: 20px;
  20. padding: .95em;
  21. text-decoration:none;
  22. color:white;
  23. &:hover{
  24. background: $color1;
  25. }
  26. }
  27. &:hover>ul{
  28. display: block;
  29. }
  30. ul{
  31. z-index:999;
  32. background: $color2;
  33. display: none;
  34. position: absolute;
  35. left: 0;
  36. top: 100%;
  37. margin: 0;
  38. padding: 0;
  39. li{
  40. _display:display; /*for IE6*/
  41. float:none;
  42. &:hover ul{
  43. left: 100%;
  44. top: 0;
  45. }
  46. a{
  47. float:none;
  48. width: 130px;
  49. display: block;
  50. }
  51. ul{
  52. display: none ;
  53. }
  54. }
  55. }
  56. }
  57. }
Add Comment
Please, Sign In to add comment