Schule als Staat Projekt Web, Dokumente, etc.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

47 Zeilen
701B

  1. html {
  2. background-color: white;
  3. }
  4. h1 {
  5. padding-top: 50px;
  6. font-family: Palatino, serif;
  7. font-size: 32px;
  8. text-align: center;
  9. }
  10. ul {
  11. list-style-type: none;
  12. margin: 0;
  13. padding: 0;
  14. overflow: hidden;
  15. position: fixed;
  16. top: 0;
  17. left: 0;
  18. width: 100%;
  19. border: 2px solid #e7e7e7;
  20. background-color: #f3f3f3;
  21. }
  22. li {
  23. float: left;
  24. }
  25. li a {
  26. display: block;
  27. border-top-right-radius: 5px;
  28. border-top-left-radius: 2.5px;
  29. color: #666;
  30. text-align: center;
  31. padding: 14px 16px;
  32. text-decoration: none;
  33. }
  34. .active {
  35. background-color: olivedrab;
  36. color: white;
  37. }
  38. li a:hover:not(.active) {
  39. background-color: #e7e7e7;
  40. }