Eine kleine super Übung zum Kennenlernen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index_styles.css 386B

1234567891011121314151617181920212223242526
  1. .menu_element {
  2. background-color: orangered;
  3. display: inline;
  4. font-size: 400%;
  5. margin: 0.8rem;
  6. text-decoration: none;
  7. }
  8. #menu {
  9. list-style-type: none;
  10. }
  11. .grid-wrapper {
  12. display: grid;
  13. padding: 4rem 4rem 0 4rem;
  14. grid-template-columns: 1fr;
  15. grid-template-rows: 100px 100px 100px;
  16. grid-gap: 10px;
  17. }
  18. .box {
  19. background-color: grey;
  20. }