-
Notifications
You must be signed in to change notification settings - Fork 439
/
Copy pathdebug.html.erb
52 lines (47 loc) · 875 Bytes
/
debug.html.erb
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
<style media="screen" type="text/css">
.placeholder {
background: #ccff00;
padding: 30px 5px;
clear: both;
}
.layout {
overflow: auto;
}
.layout > .region:nth-child(1) {
float: left;
width: 50%;
}
.layout > .region:nth-child(2) {
float: right;
width: 47%;
}
.part {
clear: both;
background: #ccc;
padding: 30px 5px;
margin: 5px;
}
</style>
<div data-type="region" class="region" id="root">
<div data-type="part" class="part">
Part 1
</div>
<div data-type="layout" class="layout">
<div data-type="region" class="region">
<div data-type="part" class="part">
Part 2
</div>
</div>
<div data-type="region" class="region">
<div data-type="part" class="part">
Part 3
</div>
<div data-type="part" class="part">
Part 4
</div>
</div>
</div>
<div data-type="part" class="part">
Part 5
</div>
</div>