diff options
Diffstat (limited to '2016_mirror_browser/firefox-old/data/panel.html')
| -rw-r--r-- | 2016_mirror_browser/firefox-old/data/panel.html | 53 | 
1 files changed, 53 insertions, 0 deletions
| diff --git a/2016_mirror_browser/firefox-old/data/panel.html b/2016_mirror_browser/firefox-old/data/panel.html new file mode 100644 index 0000000..e904c90 --- /dev/null +++ b/2016_mirror_browser/firefox-old/data/panel.html @@ -0,0 +1,53 @@ +<head> +	<style> +	body { +		font-family: "Segoe UI", "Lucida Grande", Tahoma, sans-serif; +        font-size: 100%; +        background: white; +	} +	.extra-font{ +        font-family: Times New Roman; +    } +    #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>↔ +					<button type="button" id="lron">On</button> +					<button type="button" id="lroff">Off</button> +				</p> +				<p>↕ +                    <button type="button" id="udon">On</button> +					<button type="button" id="udoff">Off</button> +				</p> +			</div> +		</div> +	</div> +</body> | 
