Guest User

Untitled

a guest
Dec 17th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. .dropdown {
  2. position: relative;
  3. display: inline-block;
  4.  
  5. &-content {
  6. display: none;
  7. position: absolute;
  8. background-color: #B24592;
  9. min-width: 160px;
  10. box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  11. padding: 5px 10px;
  12. z-index: 1;
  13. }
  14.  
  15. &:hover &-content {
  16. display: block;
  17. }
  18.  
  19. }
Add Comment
Please, Sign In to add comment