-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
132 lines (127 loc) · 2.41 KB
/
style.css
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
122
123
124
125
126
127
128
129
130
131
132
body {
font-family: Arial, sans-serif;
max-width: 1000px;
margin: 0 auto;
padding: 20px;
background-color: #f0f0f0;
}
.container {
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
color: #333;
text-align: center;
}
.input-group {
margin-bottom: 15px;
}
.input-group__input {
display: block;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
input[type="text"], input[type="number"], select {
/* width: 100%; */
width: -webkit-fill-available;
padding: 8px;
border: 1px solid #ddd;
border-radius: 4px;
}
#generate {
display: block;
width: 100%;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
#generate:hover {
background-color: #45a049;
}
#loading {
display: none;
text-align: center;
margin-top: 20px;
}
#result {
margin-top: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.image-container {
width: 45%;
margin-bottom: 20px;
aspect-ratio: 1;
display: flex;
justify-content: center;
align-items: center;
background-color: #f9f9f9;
border-radius: 8px;
overflow: hidden;
}
.image-container img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
}
.spinner {
border: 5px solid #f3f3f3;
border-top: 5px solid #3498db;
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.generating-text {
margin-top: 10px;
font-style: italic;
color: #666;
}
.tooltip {
position: relative;
display: inline-block;
margin-left: 5px;
width: 16px;
height: 16px;
background-color: #f0f0f0;
color: #333;
border-radius: 50%;
text-align: center;
line-height: 16px;
font-size: 12px;
cursor: help;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 200px;
background-color: #555;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -100px;
opacity: 0;
transition: opacity 0.3s;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}