-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoolbar.css
146 lines (132 loc) · 2.25 KB
/
toolbar.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
body {
background: white;
}
.Toolbar {
float: left;
font-family: 'Trebuchet MS';
font-size: 14px;
font-variant: small-caps;
text-align: center;
background: #F2F7FE;
padding: 10px 15px 150px 340px;
margin-bottom: 1px;
margin-right: 1px;
border: 1px solid #7B899B;
}
.CanvasContainer {
clear: both;
}
canvas {
border: 1px solid #7B899B;
}
#savedCopyContainer {
display: none;
}
#savedCopyContainer img {
width: 250px;
height: 150px;
}
@charset "utf-8";
*{margin:0; padding:0;}
.out_color{
width:70px;
height:70px;
background-color:#FFF;
border:1px dashed black;
position:absolute;
top:0;
left:100%;
}
.picker{
position:absolute;
margin:0 auto;
top:4px;
left:4px;
-moz-user-select: none;
-webkit-user-select: none;
width:250px;
height:190px;
}
#block_picker{
background-color:red;
height:180px;
width:180px;
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
-webkit-user-select: none;
}
#block_picker img {
width:180px;
}
#line {
position: absolute;
left:200px;
cursor: pointer;
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
-webkit-user-select: none;
}
.right_arrow {
width:0;
height:0;
left:23px;
position:absolute;
border-bottom:6px solid transparent;
border-left:10px solid transparent;
border-top:6px solid transparent;
border-right:10px solid black;
}
.left_arrow {
width:0;
height:0;
position:absolute;
border-bottom:6px solid transparent;
border-left:10px solid black;
border-top:6px solid transparent;
border-right:8px solid transparent;
}
#arrows {
position:absolute;
top:0;
margin-top:-4px;
left:-11px;
width:40px;
cursor: pointer;
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
-webkit-user-select: none;
}
#circle {
width:8px;
height:8px;
border:1px solid black;
border-radius:50%;
position:absolute;
left:0;
top:0;
cursor: default;
-moz-user-select: none;
-khtml-user-select: none;
user-select: none;
-webkit-user-select: none;
}
.square {
position:absolute;
top:30%;
left:70%;
height:30px;
}
.square input {
width:80px;
height:25px;
}
.cO {
width:20px;
height:19px;
background-color:white;
float:right;
border-radius:0 10px 10px 0;
}