forked from FirebaseExtended/firepad
-
Notifications
You must be signed in to change notification settings - Fork 20
/
monaco.html
38 lines (37 loc) · 864 Bytes
/
monaco.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<style>
html {
height: 100%;
}
body {
margin: 0;
height: 100%;
position: relative;
background-color: #1e1e1e;
}
/* Height / width / positioning can be customized for your use case.
For demo purposes, we make firepad fill the entire browser. */
#firepad {
/*--color-bg-firepad-remote-cursor: #1e1e1e;*/
width: 100%;
height: 100%;
}
.firepad-remote-cursor-message {
border-width: 1px;
border-style: solid;
opacity: 0.8;
padding: 1px;
}
[class*="remote-client-selection"] {
opacity: 0.5;
}
</style>
</head>
<body>
<div id="firepad"></div>
<script src="./firepad.js"></script>
</body>
</html>