<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
body{background-color: #313131}
* {
	margin: 0;
	padding: 0;
	border: 0;
}
.drag {
	position: relative;
	width: 800px;
	height: 500px;
	margin: auto;
	margin-top: 50px;
	border: 1px solid #4a4a4a;
	border-radius: 2px;
	overflow: hidden;
	background-color: #2d2d2d;
}
.drag-action {
	position: absolute;
	right: 10px;
	top: 10px;
	padding: 5px 0;
	width: 50px;
	background-color: rgba(0,0,0,0.5);
	border-radius: 2px;
	text-align: center;
	z-index: 2;
}
.scale-big,
.scale-small {
	width: 14px;
	height: 14px;
	vertical-align: middle;
	cursor: pointer;
}
.direction {
	width: 40px;
	margin-top: 5px;
	vertical-align: middle;
}
.arrow {
	position: absolute;
	border: 1px solid transparent;
	width: 10px;
	height: 10px;
	cursor: pointer;
}
.up {
	top: 33px;
	left: 19px;
}
.down {
	bottom: 7px;
	left: 19px;
}
.left {
	top: 45px;
	left: 7px;
}
.right {
	top: 45px;
	right: 7px;
}
.drag-box {
	position: relative;
}
.drag-img {
	position: absolute;
	width: 600px;
	cursor: move;
}</pre></body></html>