material.css 672 B

1234567891011121314151617181920212223242526272829303132333435
  1. .dropdown {
  2. width: 125px;
  3. vertical-align: middle;
  4. }
  5. .dropdownbutton {
  6. color: inherit;
  7. font-weight: 700;
  8. font-size: .65rem;
  9. }
  10. .dropdown-content {
  11. display: none;
  12. position: absolute;
  13. z-index: 1;
  14. background-color: inherit;
  15. }
  16. .dropdown-content a {
  17. display: block;
  18. width: 125px;
  19. margin: 8px;
  20. font-size: .65rem;
  21. font-weight: 200;
  22. }
  23. /* Change color of dropdown links on hover */
  24. .dropdown-content a:hover {}
  25. /* Show the dropdown menu on hover */
  26. .dropdown:hover .dropdown-content {display: block;}
  27. /* Change the background color of the dropdown button when the dropdown content is shown */
  28. .dropdown:hover .dropbtn {}