-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
75 lines (71 loc) · 2.35 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Kynarioverlay remote</title>
<link rel='stylesheet' href='css/normalize.css'>
<link rel='stylesheet' href='css/skeleton.css'>
<link rel='stylesheet' href='css/style.css'>
</head>
<body>
<div class='container u-full-width'>
<div class='row'>
<div class='twelve columns'>
<div class='control' id='top'>
<input type='text' placeholder='Top title'>
<textarea placeholder='Top text'></textarea>
<button class='button-primary hide'>Hide</button>
<button class='button-primary show'>Show</button>
</div>
</div>
</div>
<div class='row'>
<div class='three columns'>
<div class='control' id='left'>
<input type='text' placeholder='Left title'>
<textarea placeholder='Left text'></textarea>
<button class='button-primary hide'>Hide</button>
<button class='button-primary show'>Show</button>
</div>
</div>
<div class='six columns'>
<div class='control' id='middle'>
<input type='text' placeholder='Middle title'>
<textarea placeholder='Middle text'></textarea>
<button class='button-primary hide'>Hide</button>
<button class='button-primary show'>Show</button>
</div>
</div>
<div class='three columns'>
<div class='control' id='right'>
<input type='text' placeholder='Right title'>
<textarea placeholder='Right text'></textarea>
<button class='button-primary hide'>Hide</button>
<button class='button-primary show'>Show</button>
</div>
</div>
</div>
<div class='row'>
<div class='twelve columns'>
<div class='control' id='bottom'>
<input type='text' placeholder='Bottom title'>
<textarea placeholder='Bottom text'></textarea>
<button class='button-primary hide'>Hide</button>
<button class='button-primary show'>Show</button>
</div>
</div>
</div>
<div class='row'>
<div class='twelve columns'>
<button class='button-primary' id='hide'>Hide all</button>
<button class='button-primary' id='show'>Show all</button>
<button class='button-primary' id='clear'>Clear all</button>
<button class='button-primary' id='hidelogo'>Hide logo</button>
<button class='button-primary' id='showlogo'>Show logo</button>
</div>
</div>
<div id='log'></div>
</div>
<script src='http://code.jquery.com/jquery-2.1.4.min.js'></script>
<script src='js/app.js'></script>
</body>
</html>