Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. .down {
  2. transform: rotate(45deg);
  3. -webkit-transform: rotate(45deg);
  4. }
  5.  
  6. .dropdown-content {
  7. display: none;
  8. position: absolute;
  9. background-color: #f9f9f9;
  10. min-width: 160px;
  11. border: 1px solid #000000;
  12. box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  13. z-index: 1;
  14. }
  15.  
  16. .dropdown-content a {
  17. color: black;
  18. text-decoration: none;
  19. display: block;
  20. text-align: left;
  21. }
  22.  
  23. .dropdown-content a:hover {
  24. background-color: #f1f1f1;
  25. }
  26.  
  27. .dropdown:hover .dropdown-content {
  28. display: block;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement