-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
220 lines (181 loc) · 4.02 KB
/
style.css
File metadata and controls
220 lines (181 loc) · 4.02 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
html {
scroll-behavior: smooth;
}
.widget-container {
display: flex;
overflow-x: auto;
padding-bottom: 10px;
}
h2 {
color: #fff428;
word-wrap: normal;
font-size: 20px;
-webkit-text-stroke: 1px black;
-webkit-text-fill-color: #fff428;
}
@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@200;300;400;500;600;700;800&display=swap');
.item {
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
}
body {
background-color: #f2f2f2;
overflow: hidden scroll;
background: linear-gradient(to bottom right, #b5e0cd, #ffe9a3);
background-repeat: no-repeat;
background-attachment: fixed;
color:#ffffff;
font-family: 'Oxanium', cursive;
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}
input, button {
font-family: 'Oxanium', cursive;
font-weight: bold;
}
/* Add more shape styles as needed */
#parameters {
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
display: flex;
flex-wrap: wrap;
align-items: center;
background: rgba(255, 255, 255, 0.5);
}
/* Rest of the CSS styles for the inputs and submit button */
.f-child{
flex: 1;
}
/* Rest of the CSS styles for the inputs and submit button */
.widget-container {
display: flex;
overflow-x: auto;
padding-bottom: 10px;
white-space: nowrap;
font-size: large;
color: black;
background: rgba(255, 255, 255, 0.5);
}
.widget {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 300px;
height: 300px;
padding: 10px;
margin-right: 10px;
background-color: #9dfcff5b;;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
flex-shrink: 0;
}
.widget h3 {
margin: 0;
font-size: 18px;
font-weight: 700;
color: #ffffff;
text-shadow: 2px 4px 4px rgba(21, 23, 15, 0.6);
text-align: center;
line-height: 1.2;
text-overflow: ellipsis;
}
.widget .price {
font-weight: 700;
}
.widget img {
width: 150px;
height: 150px;
margin-bottom: 10px;
}
.input-group {
margin-right: 20px;
margin-bottom: 10px;
flex: 0 0 auto;
}
.input-group label {
display: block;
font-weight: bold;
margin-bottom: 5px;
color: #333;
}
.input-group input[type="text"],
.input-group input[type="checkbox"] {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
.checkbox-group {
display: flex;
align-items: center;
}
.checkbox-group label {
margin-bottom: 0;
margin-right: 10px;
}
#submitButton {
background-color: #4CAF50;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
}
#submitButton:hover {
background-color: #45a049;
}
#submitButton:active {
background-color: #3e8e41;
transform: translateY(1px);
}
::-webkit-scrollbar {
width: 8px;
background-color: #ffeaa300;
}
::-webkit-scrollbar-track {
background-color: #ffeaa300;
}
::-webkit-scrollbar-thumb {
background-color: #a5fad4;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background-color: #98c4ad;
}
.tooltip {
position: relative;
display: inline-block;
cursor: pointer;
}
.tooltip .tooltip-text {
visibility: hidden;
width: 120px;
background-color: #000;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
top: calc(100% + 5px);
left: 50%;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.3s;
}
.tooltip:hover .tooltip-text {
visibility: visible;
opacity: 1;
}
.small-image{
width: 150px;
height: 150px;
margin-bottom: 10px;
}
.widget .name-label {
text-align: center;
}