-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
73 lines (65 loc) · 1.32 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
62
63
64
65
66
67
68
69
70
71
72
73
<html>
<head><title>New Inspiring Tab Preferences</title></head>
<style>
body{
font-family: Arial, Helvetica, sans-serif;
}
h1 {
color: white;
font-size: 1.5em;
padding: 0.5em;
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#62A4F5), to(#498ADA));
margin-bottom: 0;
}
#container
{
border: 1px solid #498ADA;
padding: 0.5em;
}
.message
{
color: #666;
padding: 0.5em;
border-left: 1px solid #498ADA;
border-right: 1px solid #498ADA;
}
#saved
{
background: #fff799;
font-style: italic;
}
#error{
color: white;
background: #D00;
font-weight: bold;
}
.instructions
{
font-size: 0.8em;
color: #666;
}
</style>
<script type="text/javascript" src="constants.js"></script>
<script type="text/javascript" src="options.js"></script>
<body>
<h1>New Inspiring Tab Preferences</h1>
<div id="saved" class="message" hidden>
Preferences have been saved!
</div>
<div id="error" class="message" hidden>
Insert error here.
</div>
<div id="container">
<div>
Inspiring urls (comma separated): <input type="text" id="urls" size="100" value="" />
</div>
<div class="instructions">
(Example: <i>http://dribbble.com,http://flickr.com</i>)
</div>
<br>
<button id="btn">Save</button>
</div>
</body>
</html>