diff options
| author | id_ed25519_bbb.git <joak@nospace.at> | 2016-12-19 13:59:01 +0100 | 
|---|---|---|
| committer | id_ed25519_bbb.git <joak@nospace.at> | 2016-12-19 13:59:01 +0100 | 
| commit | 3c08a384d5471bca3e414091aeef9afcfb9ba668 (patch) | |
| tree | 5542c856c5694b5b217ba1703e453b65b5695c06 /2016_mirror_browser/chrome/popup.html | |
| parent | bc37ec21ad65fbd4284e0d75dc372532a33dbd7b (diff) | |
add lamp and mirror
Diffstat (limited to '2016_mirror_browser/chrome/popup.html')
| -rw-r--r-- | 2016_mirror_browser/chrome/popup.html | 58 | 
1 files changed, 58 insertions, 0 deletions
| diff --git a/2016_mirror_browser/chrome/popup.html b/2016_mirror_browser/chrome/popup.html new file mode 100644 index 0000000..17e2c9c --- /dev/null +++ b/2016_mirror_browser/chrome/popup.html @@ -0,0 +1,58 @@ +<!doctype html> +<html> +  <head> +    <title>Mirror</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="mirror.js"></script> +  </head> +  <body> +	<div id="wrapper"> +		<div id="title"> +			<h2>Mirror</h2> +		</div> +		<div id="settings"> +			<div id="button"> +				<p>⬌ +					<button type="button" id="lron">On</button> +					<button type="button" id="lroff">Off</button> +				</p> +				<p>⬍ +					<button type="button" id="upon">O    n</button> +					<button type="button" id="upoff">    Off</button> +				</p> +			</div> +		</div> +	</div> +  </body> +</html> + | 
