forked from termie/visivotab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
119 lines (103 loc) · 2.62 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<title>FancyTab Settings</title>
<style type="text/css">
article {
font-family:"Helvetica Neue," Helvetica, Arial, sans-serif;
width:600px;
margin:50px auto 0 auto;
}
h1 {
font-weight:normal;
margin:30px 0 0 0;
}
ul {
list-style:none;
margin:0;
margin-left:200px;
padding:0;
}
li {
margin-bottom:15px;
}
label {
color:#777;
}
label img {
vertical-align:text-bottom;
}
label span {
width:40px;
display:inline-block;
text-align:center;
}
section {
margin:20px 0 0;
padding:40px 0 10px 0;
border-top:1px solid #ddd;
}
h2 {
float:left;
width:180px;
font-size:16px;
margin:0;
}
p {
float:left;
width:180px;
font-size:16px;
margin:0;
}
.action {
padding:20px 0;
}
button {
margin: 0 2px 0 0;
min-width: 73px;
background-color: #EFEFEF;
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, white), color-stop(1, #EFEFEF));
background-image: -webkit-linear-gradient(white, #EFEFEF);
box-shadow: 0 1px 1px #EEE;
font-weight: bold;
border: 1px solid #CCC;
border-top: 1px solid #DDD;
color: #333;
text-shadow: 0 1px 0px white;
border-bottom: 1px solid #AAA;
padding: 0.5em 0.8em;
-webkit-border-radius: 3px;
border-radius: 3px;
-webkit-transition: 0.15s border-color linear;
white-space: nowrap;
vertical-align: middle;
font-size: 13px;
margin-left:200px;
}
input[type=text] {
margin:0 0 0 15px;
height:20px;
width:250px;
padding:5px;
border:#CCC 1px solid;
}
</style>
</head>
<body>
<article>
<h1>FancyTab Settings</h1>
<section class="button-color">
<h2>Flickr settings</h2>
<ul id="flickr_settings">
<li><label for="input_flickr_set">Flickr Set:</label><input type="text" id="input_flickr_set" placeholder="72157632647136261"></li>
</ul>
</section>
<section class="action">
<button id="save">Save Changes</button>
</section>
<section id="status">
</section>
</article>
<script type="text/javascript" src="options.js"></script>
</body>
</html>