summaryrefslogtreecommitdiff
path: root/_general/navbar.html
blob: b8a09e749b0789537104f781ec565bb44d443560 (plain)
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
<!DOCTYPE html>
<html lang="en" translate="no">
<head>
    <meta charset="UTF-8">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css">
    <script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.slim.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js"></script>
    <title>navigation</title>
    <style>
        #home:hover, .game:hover {
            background: #444;
        }

        #home:active, .game:active {
            background: #555;
        }

        * {
            overflow: hidden !important;
        }
    </style>
</head>
<body style="background:#333;margin:0;margin-left:2vw;margin-right:2vw;">
    <a title="Go to Minteck Arcade homepage" href="/" target="_top" id="home" style="display:inline-block;padding:3px 10px;">
        <img src="/_general/favicon.svg" alt="" style="width: 24px;padding: 4px;vertical-align:middle;">
        <span style="display:inline-block;color:white;text-decoration:none;vertical-align: middle;">Minteck Arcade</span>
    </a><span id="games" style="margin-top: -25px;display: inline-block;vertical-align: middle;">
        <a title="Tic-Tac-Toe" class="game" href="/tictactoe" target="_top" style="height:36px;display: inline-block;vertical-align: middle;margin-top: 6px;padding-left:5px;padding-right:5px;padding-top: 2px;">
            <img src="/tictactoe/game.svg" style="width:24px;">
        </a><a title="Rock Paper Scissors" class="game" href="/rps" target="_top" style="height:36px;display: inline-block;vertical-align: middle;margin-top: 6px;padding-left:5px;padding-right:5px;padding-top: 2px;">
            <img src="/rps/game.svg" style="width:24px;">
        </a><a title="Kartik: A New Start (ALPHA)" class="game" href="/kartik" target="_top" style="height:36px;display: inline-block;vertical-align: middle;margin-top: 6px;padding-left:5px;padding-right:5px;padding-top: 2px;">
            <img src="/kartik/game.svg" style="width:24px;">
        </a>
    </span>
</body>
</html>