-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (79 loc) · 2.39 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!--
The HTML that loads when our application window opens.
Webpack will inject our application bundle in this file.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Corner Kick</title>
<link rel="shortcut icon" type="image/png" href="../favicon.png" />
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
</head>
<body>
<!-- This is where our application is initially mounted -->
<!-- We keep this hidden because our UI is defined through portals -->
<div
id="react"
style="
display: hidden;
"
></div>
<!-- This where various UI elements are added using React portals-->
<!-- The order/arrangement of these elements should have no effect
*whatsoever* on the layout of the actual applications, these are
just "hangers" to allow us to get a reference on which to hang
various components
-->
<div
id="root"
style="
width: 100vw;
height: 100vh;
display: grid;
grid-template-columns: 251px 1fr;
grid-template-rows: 40px 1fr 300px;
"
>
<div
id="sidebarTitle"
style="
grid-row: 1;
grid-column: 1;
overflow: hidden;
border-right: 1px solid;
"
></div>
<div
id="sidebar"
style="
grid-row: 2 / 4;
grid-column: 1;
border-top: 1px solid;
border-right: 1px solid;
overflow: hidden;
"
></div>
<div
id="main"
style="
grid-row: 1 / 3;
grid-column: 2;
overflow: hidden;
"
></div>
<div
id="console"
style="
grid-row: 3;
grid-column: 2;
border-top: 1px solid;
overflow: hidden;
"
></div>
</div>
</body>
</html>