-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyleSheet.css
158 lines (142 loc) · 2.88 KB
/
StyleSheet.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
147
148
149
150
151
152
153
154
155
156
157
#stage {
position: absolute;
top: 0px;
left: 0px;
width: 800px;
height: 800px;
border: 1px solid red;
transform-origin: 0 0;
-webkit-transform-origin: 0 0;
-moz-transform-origin: 0 0;
}
#overlay {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
overflow: clip;
opacity: 0.75;
pointer-events: none;
display: none;
}
body {
overflow:hidden;
}
.image {
width: 100%;
height: 100%;
font-size: 24pt;
}
.instructions {
width:100%;
text-align: center;
color: red;
font-size: 48pt;
position:absolute;
top:20%;
height:10em;
}
.white {
width: 100%;
height: 100%;
background-color: white;
}
.black {
width: 100%;
height: 100%;
background-color: black;
}
#imageSelector {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 1;
visibility: hidden;
}
#imageSelectorBackground {
position: absolute;
width: 100%;
height: 100%;
background-color: gray;
opacity: 0.5;
}
/* The LoadDialogButton sits below the <input> element used to load image
files. The <input> has class="FileInput" which makes it completely
transparent so that the user only sees the LoadDialogButton. The styles
for #LoadDialogButton and .FileInput must position and size the two
elements exactly the same so that the boundaries of the button provide
an accurate visual guide to the boundaries of the invisible <input>.
*/
#imageSelectorButton {
position: absolute;
top: 30%;
left:10%;
width:400px;
height:30px;
background-color: white;
}
.fileInput
{
position:absolute;
top:30%;
left:10%;
width:400px;
height:30px;
opacity:0;
}
.dragHandle {
width: 40px;
height: 40px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
position: absolute;
top: -20px;
left: -20px;
border: 1px solid blue;
background-color: aquamarine;
background-image:url(CrossHairs.png);
opacity:0.5;
}
.translateHandle {
width: 40px;
height: 40px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
position: absolute;
top: -20px;
left: -20px;
border: 1px solid blue;
background-color: aquamarine;
background-image:url(Translate.png);
opacity:0.5;
cursor:move;
}
.rotateHandle {
width: 100px;
height: 100px;
-webkit-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
position: absolute;
top: -50px;
left: -50px;
border: 1px solid blue;
background-color: aquamarine;
background-image:url(Arrows.png);
opacity:0.5;
cursor:url(RotateCursor.cur),auto;
}
.handlesFade
{
-webkit-transition: 10s;
-moz-transition: 10s;
-ms-transition: 10s;
-o-transition: 10s;
transition: 10s;
opacity:0.0;
}