-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (46 loc) · 2.08 KB
/
index.html
File metadata and controls
54 lines (46 loc) · 2.08 KB
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
<!DOCTYPE html>
<html lang="en">
<load src="partials/head.html" />
<body class="main-container dark-mode">
<div class="left-container scrollable">
<div class="toogle-dark-mode">
<div id="light-mode-btn">
<img src="/images/icons/sun.svg" alt="light-mode-btn">
</div>
<div id="dark-mode-btn">
<img src="/images/icons/moon.svg" alt="dark-mode-btn">
</div>
</div>
<load src="partials/header.html" />
<load src="partials/how-to.html" />
<load src="partials/footer.html" />
</div>
<section class="toolbox-container">
<load src="partials/toolbox/result.html" />
<div class="tab">
<button class="tablinks" data-name="presets-section">
Presets
<div
style="position: absolute; background-color: rgba(255, 255, 255, 1); top: 5px; color: #585c9c; padding: 2px 5px; font-size: 10px; font-weight: bold; border-radius: 5px; transform: translateX(-40px)">
NEW
</div>
</button>
<button class="tablinks" data-name="main-section" id="defaultOpenTag">Main</button>
<button class="tablinks" data-name="background-section">Background</button>
<button class="tablinks" data-name="decorations-section">Decorations</button>
<button class="tablinks" data-name="test-fonts-section" style="display: none;">Test Fonts</button>
</div>
<div class="toolbox-tools scrollable">
<load src="partials/toolbox/presets.html" />
<load src="partials/toolbox/main.html" />
<load src="partials/toolbox/background.html" />
<load src="partials/toolbox/decorations.html" />
<load src="partials/toolbox/test-fonts.html" style="display: none" />
</div>
</section>
<load src="partials/modals/info.html" />
<load src="partials/modals/feedback.html" />
<load src="partials/modals/special-message.html" />
<load src="partials/scripts.html" />
</body>
</html>