blinker / firefox.plugin / data / tutorial / calibrate.html @ master
History | View | Annotate | Download (800 Bytes)
1 |
<html>
|
---|---|
2 |
<head>
|
3 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> |
4 |
<script src="../lib/jquery/jquery-2.2.4.min.js"></script> |
5 |
<script src="../lib/jquery-ui/jquery-ui.js"></script> |
6 |
<link rel=stylesheet href="../lib/jquery-ui/jquery-ui.css"> |
7 |
<script src="tutorial.js"></script> |
8 |
<link rel=stylesheet href="tutorial.css"> |
9 |
<title>Blickbrowser - Tutorial OnScreen</title> |
10 |
</head>
|
11 |
<body>
|
12 |
|
13 |
<div id="content" class="tutorial"> |
14 |
|
15 |
<div class="container inputcont"> |
16 |
<form action=""> |
17 |
<h1>Calibrate</h1> |
18 |
|
19 |
<div class="centerpoint"></div> |
20 |
</div>
|
21 |
|
22 |
</div>
|
23 |
|
24 |
<style>
|
25 |
.centerpoint {
|
26 |
position: fixed;
|
27 |
top: calc(50% - 10px);
|
28 |
left: calc(50% - 10px);
|
29 |
width: 20px;
|
30 |
height: 20px;
|
31 |
|
32 |
background: #000;
|
33 |
border-radius: 20px;
|
34 |
}
|
35 |
|
36 |
</style>
|
37 |
|
38 |
</body>
|
39 |
</html>
|