-
Notifications
You must be signed in to change notification settings - Fork 4
/
cape.html
30 lines (28 loc) · 1.73 KB
/
cape.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
<html>
<head>
<title>Cape - Super Powered Ctrl-F</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="font-awesome.min.css">
<script type='text/javascript' src='jquery.min.js'></script>
<script type='text/javascript' src='cape.js'></script>
</head>
<body>
<div id="container-ctrlf" style="">
<div id='message'>
Cape isn't able to read the content of this page, please try refreshing the page.
</div>
<div class="d-flex justify-content-end">
<input id="question-text-ctrlf" name="question" class="form-control question-text" placeholder="Ask in page..." autofocus="" autocomplete="off">
<div class="response-holder-container response-holder-container-overlay"><div class="response-holder" style="display: none;"><i class="fa fa-spinner fa-pulse"></i></div></div>
<a class="btn btn-custom btn-select select-prev btn-select-disabled"><i class="fa fa-caret-up" title="Previous"></i></a>
<a class="btn btn-custom btn-select select-next btn-select-disabled"><i class="fa fa-caret-down" title="Next"></i></a>
<a class="btn btn-custom btn-speech-input"><i id='speech-input' class="fa fa-microphone" title="Speech Input"></i></a>
<a class="btn btn-custom btn-speech-output"><i id='speech-output' style='width: 16px' class="fa fa-volume-off" title="Speech Output"></i></a>
<a class="btn btn-custom btn-close"><i class="fa fa-times-circle" title="Close"></i></a>
</div>
<hr />
<div id='answer'></div>
</div>
</body>
</html>