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.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  5. }
  6. .menu_left_element {
  7. width: 110px;
  8. display: inline-block;
  9. margin-left: 15px
  10. }
  11. .menu_right_element {
  12. display: inline-block;
  13. width: 50px;
  14. height: 45px;
  15. margin-right: 25px;
  16. }
  17. .menu_element_text {
  18. border-radius: 10px;
  19. background-color: #8583FF;
  20. display: block;
  21. width: 100%;
  22. height: 100%;
  23. text-decoration: none;
  24. padding: 0.4rem;
  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. grid-template-columns: 1fr;
  47. grid-template-rows: 80px 80px 80px;
  48. grid-gap: 10px;
  49. }
  50. .box {
  51. background-color: #C4C4C4;
  52. display: grid;
  53. grid-template-columns: 20px 50% auto;
  54. grid-gap: 5px;
  55. font-size: 1.4em;
  56. border-radius: 10px;
  57. }
  58. .entry {
  59. display: flex;
  60. vertical-align: center;
  61. align-items: center;
  62. padding: 5px;
  63. }
  64. .amount {
  65. display: flex;
  66. justify-content: flex-end;
  67. align-items: center;
  68. padding: 10px;
  69. }
  70. .balance-list-wrapper {
  71. display: flex;
  72. justify-content: center;
  73. }
  74. .balance-list {
  75. display: grid;
  76. width: 700px;
  77. margin: 20px;
  78. }
  79. .overview {
  80. text-align: center;
  81. padding: 20px;
  82. }
  83. #title {
  84. font-size: 2em;
  85. }
  86. #total-amount {
  87. font-size: 3em;
  88. color: green;
  89. }
  90. .dropdown {
  91. background-image: url("./components/icons/caret-down-solid.svg");
  92. background-repeat: no-repeat;
  93. background-size: 15px;
  94. background-position: right;
  95. color: #f3f3f3;
  96. }