Guest User

Untitled

a guest
Sep 20th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. /**
  2. * Pure CSS Clickable Dropdown - Styled
  3. */
  4.  
  5. #demo {
  6. margin: 30px 0 50px 0;
  7. font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  8. }
  9.  
  10. #demo .wrapper {
  11. display: inline-block;
  12. width: 180px;
  13. margin: 0 10px 0 0;
  14. height: 20px;
  15. position: relative;
  16. }
  17.  
  18. #demo .parent {
  19. height: 100%;
  20. width: 100%;
  21. display: block;
  22. cursor: pointer;
  23. line-height: 30px;
  24. height: 30px;
  25. border-radius: 5px;
  26. background: #F9F9F9;
  27. border: 1px solid #AAA;
  28. border-bottom: 1px solid #777;
  29. color: #282D31;
  30. font-weight: bold;
  31. z-index: 2;
  32. position: relative;
  33. -webkit-transition: border-radius .1s linear, background .1s linear, z-index 0s linear;
  34. -webkit-transition-delay: .8s;
  35. text-align: center;
  36. }
  37.  
  38. #demo .parent:hover,
  39. #demo .content:hover ~ .parent {
  40. background: #fff;
  41. -webkit-transition-delay: 0s, 0s, 0s;
  42. }
  43.  
  44. #demo .content:hover ~ .parent {
  45. border-bottom-left-radius: 0;
  46. border-bottom-right-radius: 0;
  47. z-index: 0;
  48. }
  49.  
  50. #demo .content {
  51. position: absolute;
  52. top: 0;
  53. display: block;
  54. z-index: 1;
  55. height: 0;
  56. width: 180px;
  57. padding-top: 30px;
  58. -webkit-transition: height .5s ease;
  59. -webkit-transition-delay: .4s;
  60. border: 1px solid #777;
  61. border-radius: 5px;
  62. box-shadow: 0 1px 2px rgba(0,0,0,.4);
  63. }
  64.  
  65. #demo .wrapper:active .content {
  66. height: 123px;
  67. z-index: 3;
  68. -webkit-transition-delay: 0s;
  69. }
  70.  
  71. #demo .content:hover {
  72. height: 123px;
  73. z-index: 3;
  74. -webkit-transition-delay: 0s;
  75. }
  76.  
  77.  
  78. #demo .content ul {
  79. background: #fff;
  80. margin: 0;
  81. padding: 0;
  82. overflow: hidden;
  83. height: 100%;
  84. border-bottom-left-radius: 5px;
  85. border-bottom-right-radius: 5px;
  86. }
  87.  
  88. #demo .content ul a {
  89. text-decoration: none;
  90. }
  91.  
  92. #demo .content li:hover {
  93. background: #eee;
  94. color: #333;
  95. }
  96.  
  97. #demo .content li {
  98. list-style: none;
  99. text-align: left;
  100. color: #888;
  101. font-size: 14px;
  102. line-height: 30px;
  103. height: 30px;
  104. padding-left: 10px;
  105. border-top: 1px solid #ccc;
  106. }
  107.  
  108. #demo .content li:last-of-type {
  109. border-bottom-left-radius: 5px;
  110. border-bottom-right-radius: 5px;
  111. }
Add Comment
Please, Sign In to add comment