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 359B

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