File size: 1,585 Bytes
1a11305
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#dialog-area {
    /* min-width: 50vw;
    max-width: 60vw;
    min-height: fit-content;

    max-height: 60vh; */



    /* height: 300px; */
    width: 300px;
    height: 300px;
    position: fixed;
    top: 50%;
    left: 50%;


    /* padding-bottom: 24px; */
    padding-right: 12px;
    padding-left: 12px;

    /* border-width: 2px;
    border: 2px solid black; */

    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;

    background-color: #f2f2f2;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);

    z-index: 999;

}

.close {
    font-size: 45px;
    font-weight: 600;
}


#canvas-send {
    margin: 0 auto;
    flex: 1;
}

#clear-btn {
    height: 30px;
    width: 30px;
    margin-right: 5px;

    cursor: pointer;
}



.drawing-board {
    margin-top: 20px;
    /* padding: 12px;
    padding-left: 30px; */
    margin-bottom: 8px;
}

#drawing-board {


    margin: 20px;
    width: 100%;
    /* height: 100%; */

    flex: 1;
    margin: 0 auto;
    background-color: #f2f2f2;

    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);

}

.action-section {

    margin-top: 10px;
    display: flex;
    /* height: 50px; */
    flex-direction: row;
    /* justify-content: flex-end; */
    height: 35px;
}



canvas {
    width: 100%;
    height: 100%;
}




#close-cntr {
    display: flex;
    justify-content: start;
}


#close-cntr span:hover {
    cursor: pointer;
}


#overlay {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;

    display: none;
}