about summary refs log blame commit diff stats
path: root/js/quest-log/index.html
blob: 7858df8e36374a0ce1de932c94f047c3f68dee8f (plain) (tree)





























































































                                                                                                                              
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="Tracking quests...different from a todo list in some secret and special way, I'm sure.">
    <title>Quest Log</title>
    <style>
        /* Basic styling for the application */
        @font-face {
            font-family: 'Shantell Sans';
            src: url('./ShantellSans.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
        }
        @font-face {
            font-family: 'ChicagoFLF';
            src: url('./ChicagoFLF.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        body, input[type="text"] {
            font-family: 'Shantell Sans', sans-serif;
        }
        body {
            margin: 20px;
            font-size: 16px;
        }
        h1, h2, button {
            font-family: 'ChicagoFLF', sans-serif;
        }
        #quest-input {
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
        }
        #new-quest {
            flex: 1;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        button {
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 4px;
            cursor: pointer;
        }
        #add-quest-button {
            background-color: rgb(0, 128, 128);;
            color: white;
            margin-left: 10px;
            flex-shrink: 0;
        }
        #add-quest-button:hover {
            background-color: rgba(0, 128, 128, 0.75);;
        }
        .quest {
            padding: 10px;
            border: 1px solid #ccc;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-sizing: border-box;
        }
        .quest.in-progress {
            background-color: #ffffcc;
        }
        .quest.complete {
            background-color: #ccffcc;
        }
        .hidden {
            display: none;
        }
        button {
            margin-left: 10px;
        }
    </style>
</head>
<body>
    <h1>Quest Log</h1>
    <div id="quest-input">
        <input type="text" id="new-quest" placeholder="Enter new quest" />
        <button id="add-quest-button" onclick="addQuest()">Add Quest</button>
    </div>
    <div id="quest-list"></div>
    <button onclick="toggleCompleted()">View Completed Quests</button>
    <script src="quest.js"></script>
</body>
</html>