Layers

โ›ถ Auth Frame
โ–ก Form Card
T Welcome Text
โ˜ฒ Assets
โ—ˆ Logo Image

Zoom: 100%

Pan: (0px, 0px)

Auth Frame

Form Card

Please log in to continue

Welcome Back!
Assets

Inspector

Select an element on the canvas to inspect it.

Zoom: 100%

Pan: (0px, 0px)

<!-- HTML -->
<div class="canvas-export">
		<div class="auth-frame">
			<div class="form-card">
				<h4>Form Card</h4>
				<p>Please log in to continue</p>
			</div>
			<div class="welcome-text">
				Welcome Back!
			</div>
		</div>
		<div class="assets">
			<img class="logo-image" src="/images/logomotif.png" alt="Logo Image" />
		</div>
</div>

/* CSS */
.canvas-export {
	position: relative;
	width: 800px;
	height: 640px;
}

.auth-frame {
	position: absolute;
	left: 80px;
	top: 80px;
	width: 360px;
	height: 560px;
	background: #ffffff;
	border: 1px solid #cbd5e1;
	border-radius: 12px;
	overflow: hidden;
}

.form-card {
	position: absolute;
	left: 30px;
	top: 100px;
	width: 300px;
	height: 200px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 16px;
}

.welcome-text {
	position: absolute;
	left: 30px;
	top: 45px;
	width: 300px;
	height: 40px;
	color: #0066ff;
	font-size: 20px;
	font-weight: bold;
	padding: 4px;
}

.assets {
	position: absolute;
	left: 500px;
	top: 80px;
	width: 300px;
	height: 300px;
	overflow: hidden;
	border: 2px dashed #cbd5e1;
	border-radius: 6px;
}

.logo-image {
	position: absolute;
	left: 20px;
	top: 50px;
	width: 260px;
	height: 180px;
	object-fit: cover;
	border: 1px solid #e2e8f0;
	border-radius: 4px;
}
Live export ยท updates as you design
2026 | Fractals Creation Engine