File size: 1,360 Bytes
340b0e1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* General body styling */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

/* Toolbar styling */
.toolbar {
    margin: 10px auto;
    padding: 10px;
}

/* Image editor container */
#tui-image-editor-container {
    width: 90%;
    height: 75vh; /* Reduced height to accommodate toolbar */
    max-width: 1200px;
    margin: 20px auto;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

/* Image editor specific styling */
#tui-image-editor {
    width: 100%;
    height: 100%;
    border: none;
}

/* Button styling */
.custom-button {
    margin: 10px 5px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-button:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #tui-image-editor-container {
        width: 95%;
        height: 65vh; /* Reduced height on mobile for better visibility */
    }

    .custom-button {
        width: 100%;
        margin: 10px 0;
    }
}