Skip to content
Snippets Groups Projects
TutorCourse.html 1.92 KiB
Newer Older
Richard Taesler's avatar
Richard Taesler committed
<!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>