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 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. * {
  2. padding: 0;
  3. margin: 0rem;
  4. }
  5. .menu_left_element {
  6. width: 110px;
  7. display: inline-block;
  8. margin-left: 15px
  9. }
  10. .menu_right_element {
  11. display: inline-block;
  12. width: 50px;
  13. height: 45px;
  14. margin-right: 25px;
  15. }
  16. .menu_element_text {
  17. border-radius: 10px;
  18. background-color: #8583FF;
  19. display: block;
  20. width: 100%;
  21. height: 100%;
  22. text-decoration: none;
  23. padding: 0.4rem;
  24. font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  25. font-size: 2.6rem;
  26. text-decoration-color: black;
  27. }
  28. #menu_left {
  29. position: absolute;
  30. left: 0;
  31. list-style-type: none;
  32. }
  33. #menu_right {
  34. position: absolute;
  35. right: 0;
  36. list-style-type: none;
  37. }
  38. #nav {
  39. background-color: #C4C4C4;
  40. height: 1.6cm;
  41. padding: 0.8rem;
  42. /* padding: 0.6rem; */
  43. }
  44. .grid-wrapper {
  45. display: grid;
  46. padding: 4rem 4rem 0 4rem;
  47. grid-template-columns: 1fr;
  48. grid-template-rows: 100px 100px 100px;
  49. grid-gap: 10px;
  50. }
  51. .box {
  52. background-color: grey;
  53. }