forked from aullman/opentok-whiteboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopentok-whiteboard.css
57 lines (51 loc) · 1.06 KB
/
opentok-whiteboard.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
ot-whiteboard canvas {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
ot-whiteboard div.OT_panel {
background-color: #424242;
padding: 5px;
border-radius: 5px 0 0 5px;
position: absolute;
top: 10px;
right: 0;
}
ot-whiteboard div.OT_panel input {
display: block;
-webkit-appearance: none;
border: none;
outline: none;
margin-top: 2px;
font-size: 9px;
}
ot-whiteboard div.OT_panel input.OT_clear,
ot-whiteboard div.OT_panel input.OT_capture {
width: 40px;
height: 40px;
color: #fff;
background-color: #7D7D7D;
border-radius: 5px;
text-align: center;
margin-top: 10px;
padding: 0;
}
ot-whiteboard div.OT_panel input.OT_erase {
width: 40px;
height: 40px;
color: #fff;
background-color: #7D7D7D;
border-radius: 50%;
text-align: center;
padding: 0;
}
ot-whiteboard div.OT_panel input.OT_color {
width: 40px;
height: 40px;
border-radius: 50%;
}
ot-whiteboard div.OT_panel input.OT_selected {
border: 4px solid #EAEAEA;
}