-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
61 lines (61 loc) · 1.57 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Excess - Options</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<div class="side">
<h1 class="title">Excess</h1>
<section class="new link">
New
</section>
<section class="styles">
<h2>Styles</h2>
<ul>
</ul>
</section>
<section class="lower">
<div class="update link">
Update
</div>
<div class="settings link">
Options
</div>
<div class="about link">
About
</div>
</section>
</div>
<div class="main" id="edit">
<div class="options">
<h1 class="title" contenteditable spellcheck="false">Gmail</h1>
<section class="actions">
<div class="save link">Save</div>
<div class="remove link">Remove</div>
<div class="beautify link">Beautify</div>
</section>
<section class="rules">
<h2>Apply to</h2>
<pre contenteditable>*\.google\.com</pre>
</section>
</div>
<div class="code" id="editor"></div>
</div>
<div class="main" id="options">
<!-- Not in use -->
</div>
<div class="main" id="about">
<div class="made">Made by <a href="https://albertxing.github.io" target="blank">Albert Xing</a>.</div>
<p>Contribute to this project on <a href="https://github.com/albertxing/excess">GitHub</a>.</p>
<p class="credits">
Editor is <a href="http://ace.c9.io" target="blank">Ace</a>.
<br>
Beautifier is <a href="http://cssbeautify.com/">CSS Beautify</a>.
</p>
</div>
<script src="ace/ace.js"></script>
<script src="options.js"></script>
<script src="beautify.js"></script>
</body>
</html>