-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
89 lines (73 loc) · 1.69 KB
/
index.css
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
.reporterContainer { display: grid;
grid-template-columns: 100%;
grid-template-rows: 20% 80fr;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"ComponentMenu"
"ViewBody";
}
.ComponentMenu { display: grid;
grid-template-columns: 100%;
grid-template-rows: 20% 80%;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"ComponentTab"
"ComponentOptions";
grid-area: ComponentMenu;
}
.ComponentTab { grid-area: ComponentTab; }
.ComponentOptions { display: grid;
grid-template-columns: 70% 30%;
grid-template-rows: 100%;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"otherArea zoomArea";
grid-area: ComponentOptions;
}
.zoomArea { grid-area: zoomArea; }
.otherArea { grid-area: otherArea; }
.ViewBody { display: grid;
grid-template-columns: 30% 70%;
grid-template-rows: 1fr;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"PropertyMenu PageContainer";
grid-area: ViewBody;
}
.PageContainer { grid-area: PageContainer; }
.PropertyMenu { display: grid;
grid-template-columns: 100%;
grid-template-rows: 40% 60%;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"PageList"
"PropertyOptions";
grid-area: PropertyMenu;
}
.PageList { grid-area: PageList; }
.PropertyOptions { grid-area: PropertyOptions; }
html, body , .reporterContainer {
height: 100%;
margin: 0;
}
/* For presentation only, no need to copy the code below */
.reporterContainer * {
border: 1px solid red;
position: relative;
}
.reporterContainer *:after {
content:attr(class);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: grid;
align-items: center;
justify-content: center;
}