-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmitglieder.html
170 lines (137 loc) · 4.17 KB
/
mitglieder.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jujuzu lernen in einem Monat - Übersicht</title>
<style>
.flex {
display: flex; place-items: flex-start;
}
/* Stil für das Layout */
main {
margin: 0 auto;
max-width: 800px;
border: 1px solid #111212;
padding:30px;
min-width: 900px;
}
header {
margin-bottom: 100px;
text-align: center;
}
img {
margin: 0 10px;
}
/* Stil für den Button-Link */
.button {
display: inline-block;
padding: 17px 60px;
background-color: #f5e8f0;
color: #0a0909;
border-radius: 5px;
text-decoration: none;
margin-bottom:60px ;
border: 1px solid #111212;
}
.ueberschrift{
text-decoration: underline;
white-space: nowrap;
}
.button:hover {
background-color: rgb(206, 198, 236);
}
img {
float: left;
margin-right: 10px; /* Fügt rechts einen Abstand hinzu, damit der Text um das Bild fließt */
}
.mitglied{
display: flex;
justify-content: space-between;
align-items: center;
}
.mitglied-box{
display: flex;
flex-direction: row;
align-items: center;
}
.navigation{
display: flex;
justify-content: space-between;
align-items: center;
}
.navigation>a{
color: #000;
}
</style>
</head>
<body>
<main>
<header>
<a href="uebersicht.html" class="pfeil">☚</a>
<h1 class="ueberschrift">Mitglieder</h1>
<nav class="navigation">
<h2 class="ueberschrift">Vorschläge</h2>
<a href="mitglieder2.html">Einfache Mitglieder</a>
<a href="mitglieder3.html">Schwere Mitglieder</a>
</nav>
</header>
<article class="mitglied">
<div class="mitglied-box">
<img src="img/bild12.jpg" width="150px" alt="">
<div >
<h3>Tom, 15</h3>
<p style="width: 200px">ich trainiere 3 mal in der woche und habe schon bei 3 Kämpfen teilgenommen. Ich wiege 62kg und bin 1,78 groß.</p>
</div>
</div>
<div>
<a href="infostom.html">
<button>Wählen: Stark</button>
</a>
</div>
</article>
<article class="mitglied">
<div class="mitglied-box">
<img src="img/Web_ReifeMädchen.jpg" width="150px" alt="">
<div >
<h3>Lea,13</h3>
<p style="width: 200px">ich habe noch nie bei einem Kampf teilgenommen ,mach das aber schon seid einem jahr. Ich wiege 46 kg und bin 1,60 groß.</p>
</div>
</div>
<div>
<button>Wählen: normal</button>
</div>
</article>
<article class="mitglied">
<div class="mitglied-box">
<img src="img/bild13.jpeg" width="150px" alt="">
<div >
<h3>Marcos,14</h3>
<p style="width: 200px">ich bin noch nicht sehr lange beim Jujuzu und habe auch noch keinen Gürtel. Ich wiege 57kg und bin 1,73 groß.</p>
</div>
</div>
<div>
<button>Wählen: Anfänger</button>
</div>
</article>
<article class="mitglied">
<div class="mitglied-box">
<img src="img/bild11.jpg" width="150px" alt="">
<div >
<h3>Lilly,11</h3>
<p style="width: 200px">ich mach jujuzu seid 2 Jahren und habe schon den ersten Gürtel geschafft. ich wiege 40kg und bin 1,54 groß.</p>
</div>
</div>
<div>
<button>Wählen: normal</button>
</div>
</article>
<div style="clear:both"></div>
</main>
<!--
<div id="app"></div>
-->
<script type="module" src="/main.js"></script>
</body>
</html>