diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..87fb502 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +application/.idea +target \ No newline at end of file diff --git a/application/src/main/resources/balance.html b/application/src/main/resources/balance.html new file mode 100644 index 0000000..eacf977 --- /dev/null +++ b/application/src/main/resources/balance.html @@ -0,0 +1,52 @@ + + + + + + + + Balance + + + + + +
+
+
+
Balance:
+
500,00 Euro
+
+
+
+ + Beschreibung + 100,00 Euro +
+
+ +
Beschreibung
+
50,00 Euro
+
+
+ +
Beschreibung
+
2,99 Euro
+
+
+
+
+ + + \ No newline at end of file diff --git a/application/src/main/resources/components/icons/Logo_testo.png b/application/src/main/resources/components/icons/Logo_testo.png new file mode 100644 index 0000000..f46b148 Binary files /dev/null and b/application/src/main/resources/components/icons/Logo_testo.png differ diff --git a/application/src/main/resources/components/icons/balance.svg b/application/src/main/resources/components/icons/balance.svg new file mode 100644 index 0000000..faa5a65 --- /dev/null +++ b/application/src/main/resources/components/icons/balance.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/application/src/main/resources/components/icons/caret-down-solid.svg b/application/src/main/resources/components/icons/caret-down-solid.svg new file mode 100644 index 0000000..e1d0723 --- /dev/null +++ b/application/src/main/resources/components/icons/caret-down-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/application/src/main/resources/components/icons/group.svg b/application/src/main/resources/components/icons/group.svg new file mode 100644 index 0000000..be8c2ef --- /dev/null +++ b/application/src/main/resources/components/icons/group.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/application/src/main/resources/components/icons/home.svg b/application/src/main/resources/components/icons/home.svg new file mode 100644 index 0000000..88512bb --- /dev/null +++ b/application/src/main/resources/components/icons/home.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/application/src/main/resources/components/icons/login.svg b/application/src/main/resources/components/icons/login.svg new file mode 100644 index 0000000..2fa98c1 --- /dev/null +++ b/application/src/main/resources/components/icons/login.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/application/src/main/resources/components/icons/user-solid.svg b/application/src/main/resources/components/icons/user-solid.svg new file mode 100644 index 0000000..23737bf --- /dev/null +++ b/application/src/main/resources/components/icons/user-solid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/application/src/main/resources/group.html b/application/src/main/resources/group.html new file mode 100644 index 0000000..e69de29 diff --git a/application/src/main/resources/index.html b/application/src/main/resources/index.html new file mode 100644 index 0000000..5dd3baf --- /dev/null +++ b/application/src/main/resources/index.html @@ -0,0 +1,28 @@ + + + + + + + + Testosteroth + + + + + + + + + \ No newline at end of file diff --git a/application/src/main/resources/login.html b/application/src/main/resources/login.html new file mode 100644 index 0000000..e69de29 diff --git a/application/src/main/resources/registration.html b/application/src/main/resources/registration.html new file mode 100644 index 0000000..569e346 --- /dev/null +++ b/application/src/main/resources/registration.html @@ -0,0 +1,21 @@ + + + + + + + + Registration + + + + +
+ +

Hier kann man register.

+ +
+ + + + \ No newline at end of file diff --git a/application/src/main/resources/stylesheets/index_styles.css b/application/src/main/resources/stylesheets/index_styles.css new file mode 100644 index 0000000..2a8cfd4 --- /dev/null +++ b/application/src/main/resources/stylesheets/index_styles.css @@ -0,0 +1,123 @@ +* { + padding: 0; + margin: 0; + font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; +} + +.menu_left_element { + width: 90px; + height: 45px; + display: inline-block; + margin-left: 15px +} + +.menu_right_element { + display: inline-block; + width: 50px; + height: 45px; + margin-right: 25px; +} + +img { + display: block; + height: 100%; + width: 100%; +} + +.menu_element_text { + border-radius: 10px; + /*background-color: #8583FF;*/ + display: block; + width: 100%; + height: 100%; + text-decoration: none; + padding: 0.4rem; + font-size: 2.6rem; + text-decoration-color: black; +} + +#menu_left { + position: absolute; + left: 0; + list-style-type: none; + +} + +#menu_right { + position: absolute; + right: 0; + list-style-type: none; +} + + +#nav { + background-color: #C4C4C4; + height: 1.6cm; + padding: 0.8rem; + /* padding: 0.6rem; */ +} + + +.grid-wrapper { + display: grid; + grid-template-columns: 1fr; + grid-template-rows: 80px 80px 80px; + grid-gap: 10px; +} + + +.box { + background-color: #C4C4C4; + display: grid; + grid-template-columns: 20px 50% auto; + grid-gap: 5px; + font-size: 1.4em; + border-radius: 10px; +} + +.entry { + display: flex; + vertical-align: center; + align-items: center; + padding: 5px; +} + +.amount { + display: flex; + justify-content: flex-end; + align-items: center; + padding: 10px; +} + +.balance-list-wrapper { + display: flex; + justify-content: center; +} + +.balance-list { + display: grid; + width: 700px; + margin: 20px; +} + +.overview { + text-align: center; + padding: 20px; +} + +#title { + font-size: 2em; +} + +#total-amount { + font-size: 3em; + color: green; +} + +.dropdown { + background-image: url("./icons/caret-down-solid.svg"); + background-repeat: no-repeat; + background-size: 15px; + background-position: right; + color: #f3f3f3; +} \ No newline at end of file diff --git a/application/src/main/resources/stylesheets/registration_styles.css b/application/src/main/resources/stylesheets/registration_styles.css new file mode 100644 index 0000000..d170c96 --- /dev/null +++ b/application/src/main/resources/stylesheets/registration_styles.css @@ -0,0 +1,3 @@ +#main { + margin: 100px; +} \ No newline at end of file