summaryrefslogtreecommitdiff
path: root/2016_mirror_browser/firefox/popup.html
blob: a883d981c0feec249b8184875ca27819465035b3 (plain)
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
<!doctype html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Mirror</title>
    <style>
	body {
		font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif;
        	font-size: 100%;
        	background: white;
        	width: 400px;
        	height: 175px;
	}
	#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>
  </head>
  <body>
	<div id="wrapper">
		<div id="title">
			<h2>Mirror</h2>
		</div>
		<div id="settings">
			<div id="button">
				<p>&#8596;
					<button type="button" id="lron">On</button>
					<button type="button" id="lroff">Off</button>
				</p>
				<p>&#8597;
					<button type="button" id="upon">O    n</button>
					<button type="button" id="upoff">    Off</button>
				</p>
			</div>
		</div>
	</div>
    <script src="mirror.js"></script>
  </body>
</html>