-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.haml
93 lines (91 loc) · 2.86 KB
/
index.html.haml
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
%html{:xmlns => "http://www.w3.org/1999/xhtml", "xml:lang" => "en", :lang => "en"}
%head
%link{rel: 'stylesheet', href: 'css/style.css', type: 'text/css'}
%script{src: 'scripts/bundle.js'}
%body
.hud
.options
%ul.config.collapsed
%li
%input.submit{type: :submit, value: 'Generate'}
.toggle
options
.toggle.hidden
collapse
%li.bag
Draw tiles from bag?
%input{type: :checkbox, value: true, checked: true}
%li.bag-toggle
Players:
%select.players
%option{value:2} 2
%option{value:3} 3
%option{value:4} 4
%option{value:5} 5
%option{value:6} 6
%li.bag-toggle.hidden
1
%input.1{type: :text, value: 1}
%li.bag-toggle.hidden
2 Straight:
%input.2-straight{type: :text, value: 2}
%li.bag-toggle.hidden
2 Turn:
%input.2-turn{type: :text, value: 2}
%li.bag-toggle.hidden
3:
%input.3{type: :text, value: 0}
%li.bag-toggle.hidden
4:
%input.4{type: :text, value: 1}
%li
Size:
%select.size
%option{value: 121} Big
%option{value: 60, selected: true} Small
%li
Zones:
%select.zones
%option{value: 1} 1
%option{value: 2} 2
%option{value: 3} 3
%option{value: 4} 4
%option{value: 5} 5
%option{value: 6} 6
%option{value: 7} 7
%option{value: 8} 8
%option{value: 9, selected: true} 9
%li
Speed:
%select.interval
%option{value:0} PLAID!
%option{value:10} 10ms
%option{value:20, selected: true} 20ms
%option{value:50} 50ms
%option{value:100} 100ms
%option{value:200} 200ms
%option{value:500} 500ms
%option{value:1000} 1s
%option{value:2000} 2s
%option{value:5000} 5s
%li
%button.save Save
%li
Tiles:
%span.min 0
\/
%span.max 0
%li
Char:
%ul.characters
%li
%button.character.first{value: 0}=' '
%button.character.second{value: 1}=' '
%button.character.third{value: 2}=' '
%button.character.fourth{value: 3}=' '
.info.hidden
.character_info.hidden
Fill me in
.main
%canvas.hidden{id: 'my_canvas', width: 2057, height: 2057}
-#%canvas.hidden{id: 'my_canvas', width: 121, height: 121}