123456789101112131415161718192021222324252627282930 |
- <!doctype html>
- <html>
- <head>
- <title>Getting Started Extension's Popup</title>
- <style>
- body {
- font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
- font-size: 100%;
- text-overflow: ellipsis;
- overflow: hidden;
- width: 400px;
- text-align:center;
- }
- button {
- width: 100%;
- height: 50px;
- margin-top: 10px;
- }
- </style>
- <script src="jquery.js"></script>
- <script src="index.js"></script>
- </head>
- <body>
- <div id="mirror" style="display:none">This website may be blocked in your region.<br />
- <button>Take me to a mirror</button>
- </div>
- <div id="nomirror">This website has no mirror provided by RWB</div>
- </body>
- </html>
|