-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
90 lines (82 loc) · 5.54 KB
/
index.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" />
<!-- CSS -->
<link rel="stylesheet" href="/src/styles/styles.css" />
<link rel="stylesheet" href="/src/styles/eisentimeramine.css" />
<link rel="stylesheet" href="/src/styles/help.css" />
<link rel="stylesheet" href="/src/styles/fonts.css">
<link rel="stylesheet" href="/src/styles/planner.css" />
<link rel="stylesheet" href="/src/styles/taskplan.css" />
<link rel="stylesheet" href="/src/styles/settings.css" />
<link rel="stylesheet" href="/src/styles/tasks.css" />
<link rel="stylesheet" href="/src/styles/reminders.css" />
<!-- Testing Testing Testing -->
<!-- <link rel="stylesheet" href="/src/styles/faithful.css" /> -->
<!-- Themes -->
<link class="theme" name="bubblegum" rel="stylesheet" href="/src/styles/themes/bubblegum.css" disabled />
<link class="theme" name="blueberry" rel="stylesheet" href="/src/styles/themes/blueberry.css" disabled />
<link class="theme" name="cherry" rel="stylesheet" href="/src/styles/themes/cherry.css" disabled />
<link class="theme" name="danishpastel" rel="stylesheet" href="/src/styles/themes/danishpastel.css" disabled />
<link class="theme" name="dark" rel="stylesheet" href="/src/styles/themes/dark.css" disabled />
<link class="theme" name="gray" rel="stylesheet" href="/src/styles/themes/gray.css" disabled />
<link class="theme" name="lemon" rel="stylesheet" href="/src/styles/themes/lemon.css" disabled />
<link class="theme" name="light" rel="stylesheet" href="/src/styles/themes/light.css" disabled />
<link class="theme" name="lilac" rel="stylesheet" href="/src/styles/themes/lilac.css" disabled />
<link class="theme" name="matcha" rel="stylesheet" href="/src/styles/themes/matcha.css" disabled />
<link class="theme" name="strawberry" rel="stylesheet" href="/src/styles/themes/strawberry.css" disabled />
<link class="theme" name="tangerine" rel="stylesheet" href="/src/styles/themes/tangerine.css" disabled />
<link class="theme" name="vampire" rel="stylesheet" href="/src/styles/themes/vampire.css" disabled />
<link class="theme" name="dirt" rel="stylesheet" href="/src/styles/themes/dirt.css" disabled />
<!-- Tauri Stuff -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tauri App</title>
<!-- Scripts -->
<script type="module" src="/src/main.ts" defer></script>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
</head>
<header>
<button class="tabbutton active" name="tasks" id = "tasktabbutton" style="margin-left: 2rem;">Tasks</button>
<button class="tabbutton" name="planner" id = "plannertabbutton">Planner</button>
<button class="tabbutton" name="taskplan" id = "tptabbutton" >Project Planner</button>
<button class="tabbutton" name="pomodoro" id = "pomodorotabbutton">Time Block</button>
<button class="tabbutton" name="eisenhower" id = "eisenhowertabbutton">Eisenhower</button>
<button class="tabbutton" name="tinkering" id = "tinkeringtabbutton">Containers</button>
<div class="flexspacer"></div>
<button class="tabbutton" name="dopamenu" id = "dopamenutabbutton">DopaMenu</button>
<button class="tabbutton" name="help" id="helptabbutton">💡</button>
<button class="tabbutton" name="reminders" id = "reminderstabbutton">🔔</button>
<button class="tabbutton" name="settings" id = "settingstabbutton" style="width: 2rem;">⚙️</button>
<button class="tabbutton" style="display: none;" id="debugtabbutton" name="debug">🚫🪲</button>
</header>
<body style="display: none;">
<div class="sheet" id="sheet" style="display: none;">
<div class="container">
<div style="display: flex; justify-content: space-between;">
<h1 id="sheetheading" style="margin-top: 0;">
Sheet Heading
</h1>
<button class="blank" style="font-size: xx-large; margin-top: -1rem;" id="dismisssheet">×</button>
</div>
<div id="sheetcontent">Content Here</div>
</div>
</div>
<div class="tabcontainer">
<div class="tab visible" style="min-width: 100%; max-width: 100%;" name="tasks" id="tasktab" src="/src/tabs/tasks.html"></div>
<div class="tab" name="planner" src="/src/tabs/planner.html"></div>
<div class="tab" name="taskplan" src="/src/tabs/taskplan.html" ></div>
<div class="tab" name="pomodoro" src="/src/tabs/pomodoro.html"></div>
<div class="tab" name="eisenhower" src="/src/tabs/eisenhower.html"></div>
<div class="tab" name="tinkering" src="/src/tabs/tinkering.html"></div>
<div class="tab" name="dopamenu" src="/src/tabs/dopamenu.html"></div>
<div class="tab" name="help" src="/src/tabs/help.html"></div>
<div class="tab" name="reminders" src="/src/tabs/reminders.html"></div>
<div class="tab" name="settings" src="/src/tabs/settings.html"></div>
<div class="tab" name="debug" src="/src/tabs/debug.html"></div>
</div>
</body>
</html>