File size: 673 Bytes
7552f65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
body {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
#prompt {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
}
#generate-btn {
    padding: 10px 15px;
    background: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}
#preview-container {
    margin: 20px 0;
}
#preview-container img {
    max-width: 100%;
    border: 2px dashed #ccc;
}
.watermarked {
    opacity: 0.7;
    position: relative;
}
.watermarked::after {
    content: "PREVIEW";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    color: rgba(255, 0, 0, 0.5);
}