-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
68 lines (58 loc) · 1.22 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
<html>
<head>
<title>Google Mail Checker - Options</title>
<style>
body {
font-family:helvetica, arial, sans-serif;
font-size:80%;
margin:10px;
}
#header {
padding-bottom:1.5em;
padding-top:1.5em;
}
#header h1 {
font-size: 156%;
display:inline;
padding-bottom:43px;
padding-left:75px;
padding-top:40px;
background:url(icon_128.png) no-repeat;
background-size:67px;
background-position:1px 18px;
}
.section-header {
background:#ebeff9;
border-top:1px solid #b5c7de;
font-size:99%;
padding:3px 0 2px 5px;
font-weight:bold;
margin-bottom:1em;
margin-top:4em;
}
.section-header.first {
margin-top:1em;
}
#custom-domain {
width:300px;
margin-left:2px;
}
#footer {
margin-top:4em;
}
</style>
<script src="options.js"></script>
</head>
<body>
<div id="header"><h1>Google Mail Checker Options</h1></div>
<div class="section-header first">Custom Domain</div>
<p>To use Google Mail checker with Google Apps for Your Domain, enter the domain here.
<p>
https://mail.google.com/<input type="text" id="custom-domain">
<em>(eg a/mydomain.com)</em>
<div id="footer">
<button id="save-button" style="font-weight:bold">Save</button>
<button id="cancel-button">Cancel</button>
</div>
</body>
</html>