-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimage_manipulation.css
More file actions
53 lines (46 loc) · 831 Bytes
/
image_manipulation.css
File metadata and controls
53 lines (46 loc) · 831 Bytes
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
@charset "utf-8";
.viewing_image {
position: relative;
border: #dddddd 1px solid;
padding: 3px;
width: 749px;
height: 505px;
margin-bottom: 10px;
overflow: hidden;
left: 50%;
margin-left: -375px;
}
.image_container{
width: 749px;
height: 505px;
}
.image_container img{
position: absolute;
margin: 0;
padding: 0;
z-index: 999;
cursor: move;
}
.tool_panel {
position: absolute;
left: 23px;
bottom: 23px;
background: rgba(153, 153, 153, 0.5);
height: 30px;
padding: 0 20px;
z-index: 2010;
border-radius: 3px;
}
.tool_panel span{
display: inline-block;
width: 30px;
height: 30px;
background: url(img/toolbg.png) no-repeat;
cursor: pointer;
}
.tool_panel span.turn_right{
background-position: 0 -36px;
}
.tool_panel span.fit_container{
background-position: 0 -73px;
}