summaryrefslogtreecommitdiff
path: root/2015_locomotivebrowser/chrome/popup.html
diff options
context:
space:
mode:
authorjoak <joak@nospace.at>2017-01-13 15:18:08 +0100
committerjoak <joak@nospace.at>2017-01-13 15:18:08 +0100
commite955b48277bc86a41744078c032f44eeb53e38e6 (patch)
tree6b3841facbbc07697c2d7d70e84d6c7897ceb934 /2015_locomotivebrowser/chrome/popup.html
parentea824be9f5fa9ae470db515ab3f6d3996a9cae0f (diff)
new icon mirror
Diffstat (limited to '2015_locomotivebrowser/chrome/popup.html')
-rw-r--r--2015_locomotivebrowser/chrome/popup.html52
1 files changed, 52 insertions, 0 deletions
diff --git a/2015_locomotivebrowser/chrome/popup.html b/2015_locomotivebrowser/chrome/popup.html
new file mode 100644
index 0000000..07ae38f
--- /dev/null
+++ b/2015_locomotivebrowser/chrome/popup.html
@@ -0,0 +1,52 @@
+<!doctype html>
+<html>
+ <head>
+ <title>Locomotive</title>
+ <style>
+ body {
+ font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
+ font-size: 100%;
+ background: white;
+ width: 400px;
+ height: 105px;
+ }
+ #button {
+ text-align: center;
+ margin-top: 15px;
+ margin-bottom: 5px;
+ }
+ #start {
+ position: absolute:
+ top: 50%;
+ }
+ #wrapper{
+ border: 5px solid black;
+ padding: 10px;
+ }
+ #title{
+ text-align: center;
+ }
+ #title h2{
+ margin-top: 1px;
+ }
+ #settings{
+ text-align: center;
+ }
+ </style>
+ <script src="locomotive.js"></script>
+ </head>
+ <body>
+ <div id="wrapper">
+ <div id="title">
+ <h2>Locomotive</h2>
+ </div>
+ <div id="settings">
+ <div id="button">
+ <button type="button" id="start">Start</button>
+ <button type="button" id="stop">Stop</button>
+ </div>
+ </div>
+ </div>
+ </body>
+</html>
+