-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcustomize.html
76 lines (68 loc) · 1.84 KB
/
customize.html
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>
Vysor
</title>
<script src='common/jquery-2.1.1.min.js' type="text/javascript">
</script>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript">
</script>
<script src='vysor-defaults.js' type="text/javascript"></script>
<script src='customize.js' type="text/javascript"></script>
<style>
textarea {
position:absolute; top:175px; left:0; right:0; bottom: 50px; padding:1em;
}
body {
/* font-family: 'Roboto', sans-serif;*/
}
.navbar-inverse .navbar-brand {
color: white;
}
.navbar-inverse {
background-color: #4696e5;
border-color: #4696e5;
}
#error {
color: red;
}
.navbar {
border-radius: initial;
margin-bottom: 0px;
}
.navbar a {
border-bottom: initial;
}
.navbar-inverse .navbar-nav>li>a {
color: white;
}
</style>
</head>
<body>
<div class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Customize Vysor</a>
</div>
</div>
</div>
<div class='well'>
<label>Customizing Vysor</label>
<div><a href='https://github.com/koush/vysor.io/issues/211' target='_blank'>Learn More</a></div>
<br/>
<div id='error'> </div>
</div>
<textarea class="form-control"></textarea>
<div class="navbar navbar-default navbar-fixed-bottom">
<div class="container-fluid">
<div class='navbar-header'>
<a class="navbar-text" href="#" id='save'>Save</a>
<a class="navbar-text" href="#" id='defaults'>Defaults</a>
</div>
</div>
</div>
</body>
</html>