forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 820 Bytes
/
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
<!-- Copyright (c) Microsoft Corporation and contributors. All rights reserved. -->
<!-- Licensed under the MIT License. -->
<!doctype html>
<html lang="en" style="height: 100%">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Test - DiceRoller</title>
</head>
<body style="margin: 0; height: 100%">
<div id="content" style="min-height: 100%; display: flex">
<div
id="sbs-left"
style="
flex-grow: 1;
width: 50%;
border: 1px solid lightgray;
box-sizing: border-box;
position: relative;
"
></div>
<div
id="sbs-right"
style="
flex-grow: 1;
width: 50%;
border: 1px solid lightgray;
box-sizing: border-box;
position: relative;
"
></div>
</div>
</body>
</html>