-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSidebar.html
More file actions
76 lines (75 loc) · 2.95 KB
/
Sidebar.html
File metadata and controls
76 lines (75 loc) · 2.95 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<base target="_top">
<!-- Use a templated HTML printing scriptlet to import common stylesheet -->
<?!= HtmlService.createHtmlOutputFromFile('Stylesheet').getContent(); ?>
</head>
<body>
<!-- Below is the HTML code that defines the sidebar element structure. -->
<div class="sidebar branding-below">
<p>
Enhance Document Accessibility
</p>
<div class="toggle-menu">
<div class="toggle-container">
<label class="switch">
<input type="checkbox" id="toggle-format-font">
<span class="slider round"></span>
</label>
<span class="toggle-label">Standardize Font Style</span>
</div>
<div class="toggle-container">
<label class="switch">
<input type="checkbox" id="toggle-format-headings">
<span class="slider round"></span>
</label>
<span class="toggle-label">Create Automatic Headings</span>
</div>
<div class="toggle-container">
<label class="switch">
<input type="checkbox" id="toggle-underlines-italics">
<span class="slider round"></span>
</label>
<span class="toggle-label">Remove Underlining & Italics</span>
</div>
<div class="toggle-container">
<label class="switch">
<input type="checkbox" id="toggle-document-color">
<span class="slider round"></span>
</label>
<span class="toggle-label">Adjust Page Colors</span>
</div>
<div class="toggle-container">
<label class="switch">
<input type="checkbox" id="toggle-image-prompt">
<span class="slider round"></span>
</label>
<span class="toggle-label">Add Image Alt Text</span>
</div>
<div class="toggle-container">
<label class="switch">
<input type="checkbox" id="toggle-ai-summary">
<span class="slider round"></span>
</label>
<span class="toggle-label">Improve Readability</span>
</div>
</div>
<div id="sidebar-button-bar">
<button id="reformat-document">Reformat Document</button>
</div>
<div class="additional-links">
<a href="https://readeasy.w3spaces.com/faq.html" class="secondary" target="_blank">FAQ</a>
<a href="https://readeasy.w3spaces.com/contact.html" class="secondary" target="_blank">Contact</a>
<a href="#" class="secondary" id="theme-toggle-link">Toggle Dark/Light Theme</a>
</div>
</div>
<div class="logo-container bottom">
<img alt="ReadEasy logo" class="logo" width="25"
src="https://i.ibb.co/QdLfLRh/EasyRead.png">
<span class="gray branding-text">ReadEasy™</span>
</div>
<!-- Use a templated HTML printing scriptlet to import JavaScript -->
<?!= HtmlService.createHtmlOutputFromFile('SidebarJavaScript').getContent(); ?>
</body>
</html>