-
Notifications
You must be signed in to change notification settings - Fork 0
/
uebersicht.html
90 lines (75 loc) · 2 KB
/
uebersicht.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
<!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>
/* Stil für das Layout */
main {
margin: 0 auto;
max-width: 800px;
border: 1px solid #111212;
padding:30px;
text-align: center;
}
header {
margin-bottom: 100px;
text-align: center;
}
img {
margin: 0 10px;
}
/* Stil für den Button-Link */
.button {
display: inline-block;
padding: 17px 160px;
background-color: #f5e8f0;
color: #0a0909;
border-radius: 5px;
text-decoration: none;
margin-bottom:60px ;
border: 1px solid #111212;
}
.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 */
}
#rechts{
float:right;
margin-top:190px ;
}
#links{
margin-top:200px ;
}
.pfeil{
margin-right: 800px;
font-size: 30px;
}
.pfeil:hover {
background-color: rgb(206, 198, 236);
}
</style>
</head>
<body>
<main>
<header>
<a href="index.html" class="pfeil">☚</a>
<h1>Übersicht</h1>
</header>
<a href="ubungen.html" class="button">☆ Übungen ☆</a>
<a href="mitglieder.html" class="button">☆ Mitglieder ☆</a>
<a href="kampfe.html" class="button">☆ Kämpfe ☆</a>
<a href="trainer.html" class="button">☆ Trainer ☆</a>
<div style="clear:both"></div>
</main>
<!--
<div id="app"></div>
-->
<script type="module" src="/main.js"></script>
</body>
</html>