Newer
Older
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
<!doctype html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tutor Course</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="theme.js" defer></script>
</head>
<style>
.main-content {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.modal {
position: fixed;
inset: 0;
background: rgba(241, 241, 241, 0.7);
display: none;
align-items: center;
justify-content: center;
}
.content {
position: relative;
background: var(--box-bg-color);
padding: 1em 2em;
border-radius: 4px;
}
.modal:target {
display: flex;
}
</style>
<body>
<nav class="navbar">
<div class="logo">
<a href="Homepage.html">LOGO</a>
</div>
<div class="nav-dots">
<h1>Prog 2 Tutor Übersicht</h1>
</div>
<a href="#" class="account-btn">Account</a>
</nav>
<main class="main-cnntent">
<button class="box" onclick="location.href='AssignmentTutor.html'">
Gruppe 1:<br />
Montag 12-14Uhr
</button>
<button class="box" onclick="location.href='AssignmentTutor.html'">
Gruppe 2: <br />
Montag 14-16Uhr
</button>
<button class="box" onclick="location.href='AssignmentTutor.html'">
Gruppe 3: <br />
Mittwoch 13-15Uhr
</button>
<button class="box" onclick="location.href='AssignmentTutor.html'">
Gruppe 4: <br />
Donnerstag 15-17Uhr
</button>
</main>
</body>
</html>