forked from developergovindgupta/move-rotate-resizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (54 loc) · 849 Bytes
/
style.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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
html,
body {
width: 100%;
height: 100%;
}
body {
background-color: lightblue;
}
.container {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
left: 100px;
top: 100px;
right: 100px;
bottom: 100px;
border: solid 1px red;
overflow: auto;
}
.content {
width: 800px;
height: 600px;
background-color: white;
}
.print-area {
position: relative;
width: 1600px;
height: 1200px;
background-color: white;
border: solid 1px black;
transform-origin: 0px 0px;
transform: scale(0.5);
overflow: hidden;
}
.target {
position: absolute;
top: 300px;
left: 400px;
width: 300px;
height: 300px;
border: solid 2px black;
background-color: lightgreen;
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
cursor: default;
}