-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeck.annotate.css
109 lines (94 loc) · 1.77 KB
/
deck.annotate.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
.deck-annotate-canvas {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
}
.deck-annotate-canvas > canvas {
width: 100%;
height: 100%;
}
#deck-annotate-tools {
display: none;
z-index: 1001;
bottom: 40px;
right: 15px;
padding: 10px;
padding-top: 0;
position: absolute;
background-color: white;
}
@media print {
#deck-annotate-tools {
display: none;
}
}
#deck-annotate-tools > .hidden {
display: none;
}
#tools-title {
font-size: medium;
}
#shape-picker .shape {
display: inline-block;
width: 26px;
height: 26px;
padding: 1px;
margin: 1px;
border: 2px solid black;
}
#shape-line {
margin: auto;
border: 0;
background-color: black;
margin-top: 12px;
height: 5px;
width: 80%;
}
#shape-rectangle {
margin: auto;
border: 3px solid black;
margin-top: 2px;
height: 60%;
width: 60%;
}
#shape-circle {
margin: auto;
border: 3px solid black;
margin-top: 2px;
height: 60%;
width: 60%;
border-radius: 50%;
}
#size-picker .size {
display: inline-block;
vertical-align: middle;
padding: 2px;
margin: 4px 2px;
border-radius: 50%;
border: 2px solid black;
}
#color-picker .color {
width: 25px;
height: 25px;
margin: 1px;
border: 2px solid black;
}
#deck-annotate-tools .active {
border: 2px solid green;
}
#deck-annotate-tools > .expand-arrow {
float:right;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
}
#deck-annotate-tools > .left.expand-arrow {
border-right:10px solid blue;
}
#deck-annotate-tools > .right.expand-arrow {
display: inline-block;
border-left: 10px solid blue;
}