change_pd.html 542 B

123456789101112131415161718192021222324252627282930313233343536
  1. <style type="text/css">
  2. ul {
  3. list-style-type: none;
  4. margin: 0;
  5. padding: 0;
  6. overflow: hidden;
  7. background-color: thistle;
  8. position: fixed;
  9. width:100%;
  10. }
  11. ul li{float: left;}
  12. ul li a{
  13. display: block;
  14. color: black;
  15. padding: 8px 16px;
  16. text-align: center;
  17. text-decoration: none;
  18. }
  19. ul li a.active{
  20. color: lavender;
  21. background-color: darkmagenta;
  22. }
  23. ul li a:hover:not(.active)
  24. {
  25. background-color: darkviolet;
  26. color: white;
  27. }
  28. body{
  29. margin: 0;
  30. font-family: Arial, Helvetica, sans-serif;
  31. }
  32. </style>