forked from miroapp/app-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.html
42 lines (37 loc) · 1012 Bytes
/
sidebar.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="https://miro.com/app/static/styles.1.0.css" />
<style>
.rtb-sidebar-caption {
font-size: 14px;
font-weight: bold;
color: rgba(0, 0, 0, 0.8);
padding: 24px 0 0 24px;
}
textarea {
display: block;
height: calc(100% - 110px);
margin: 20px 0 0 20px;
background-color: white;
border-radius: 4px;
border: 0;
width: calc(100% - 40px);
text-align: left;
font-size: 22px;
}
.tip {
color: #cccccc;
margin: 20px 0 0 26px;
}
</style>
</head>
<body>
<div class="rtb-sidebar-caption">Looking Glass</div>
<div class="tip" id="tip">Select widget to see its text</div>
<textarea id="widget-text" readonly></textarea>
<script src="https://miro.com/app/static/sdk.1.1.js"></script>
<script src="sidebar.js"></script>
</body>
</html>