-
Drag and drop image file here
-
-
-
-
+ body {
+ overscroll-behavior: none;
+ overflow: hidden;
+ user-select: none;
+ font-family:
+ Inter,
+ -apple-system,
+ BlinkMacSystemFont,
+ 'Segoe UI',
+ 'Roboto',
+ 'Oxygen',
+ 'Ubuntu',
+ 'Cantarell',
+ 'Fira Sans',
+ 'Droid Sans',
+ 'Helvetica Neue',
+ sans-serif;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+ font-feature-settings:
+ 'rlig' 1,
+ 'calt' 1;
+ }
+
+ .drop-zone.hover {
+ background-color: #e0e0e0; /* Light gray background when hovering */
+ border-color: #0088cc; /* Change border color */
+ color: #0088cc; /* Change text color */
+ }
+
+ .drop-zone {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 12px;
+ padding: 12px;
+ border: 2px dashed #cccccc;
+ border-radius: 12px;
+ height: calc(100% - 24px);
+ width: calc(100% - 24px);
+ text-align: center;
+ box-sizing: border-box;
+ color: #555555;
+ }
+
+ .drop-zone-text {
+ font-size: 24px;
+ pointer-events: none;
+ font-weight: bold;
+ }
+
+
+
+