forked from Crumplecorn/ARK-Breeding-Calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbreeding.css
287 lines (241 loc) · 6.21 KB
/
breeding.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
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
body {
font-family: Arial, sans-serif;
font-size: 0.9em;
color: white;
text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.8), 1px -1px 0 rgba(0, 0, 0, 0.8), -1px 1px 0 rgba(0, 0, 0, 0.8), 1px 1px 0 rgba(0, 0, 0, 0.8);
height: 100%;
background-attachment: fixed;
background-image: url(background.webp);
background-repeat: no-repeat;
background-size: cover;
padding: 0px;
margin: 0px;
position: relative;
z-index: 1;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7); /* Dimming the background */
z-index: -1;
}
a {
color: #66ccff; /* Tek blue color for links */
}
input {
width: 50px;
}
input[type=button] {
width: auto;
}
input, select {
appearance: none; /* Remove native styling */
-webkit-appearance: none;
-moz-appearance: none;
background-color: rgba(50, 50, 50, 0.8); /* Consistent dark background */
color: white; /* Consistent text color */
text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.8), 1px -1px 0 rgba(0, 0, 0, 0.8), -1px 1px 0 rgba(0, 0, 0, 0.8), 1px 1px 0 rgba(0, 0, 0, 0.8);
border: 1px solid #66ccff; /* Add Tek blue border */
border-radius: 5px; /* Optional rounded corners */
font-size: 10pt;
padding: 5px;
width: 100%; /* Ensure full width */
}
option {
background-color: rgba(30, 100, 150, 1); /* Tek blue for dropdown options */
color: white;
text-shadow: none; /* Remove shadow for clear text */
font-size: 10pt;
}
.autocomplete {
width: 120px;
}
.ui-autocomplete {
background-color: rgba(50, 50, 50, 0.9); /* Dark metallic background */
border: 1px solid #66ccff; /* Tek blue border */
color: white; /* White text */
font-size: 10pt; /* Match other dropdowns */
max-height: 200px; /* Add a max height if there are many options */
overflow-y: auto; /* Enable scrolling if necessary */
z-index: 1000; /* Ensure it appears above other elements */
}
.ui-menu-item {
background-color: rgba(30, 100, 150, 1); /* Tek blue for items */
padding: 5px; /* Spacing for better readability */
}
.ui-menu-item:hover {
background-color: rgba(40, 150, 200, 1); /* Lighter Tek blue on hover */
cursor: pointer; /* Indicate interactivity */
}
ul {
background-color: #2d2d2d; /* Dark metallic color */
color: white;
}
h3 {
margin-bottom: 0px;
}
p.subheading {
margin-top: 0px;
font-size: 0.7em;
}
p.footer {
margin-top: 0px;
font-size: 0.8em;
}
table {
background: linear-gradient(rgba(50, 50, 50, 0.8), rgba(70, 150, 200, 0.4)); /* Metallic and Tek blue theme */
border-radius: 10px;
margin-bottom: 15px;
width: 100%;
min-width: 400px;
}
td {
margin: 2px;
padding: 5px;
}
thead {
font-weight: bold;
}
caption, .tableheader {
font-weight: bold;
font-size: 1.1em;
color: #66ccff; /* Tek blue */
}
.hiderows caption, .tableheader.dimmed {
color: #999999;
}
.hiderows tr {
display: none;
}
.label {
font-weight: bold;
color: #66ccff; /* Tek blue */
}
.box {
display: table;
text-align: center;
border-radius: 10px;
background: linear-gradient(rgba(50, 50, 50, 0.6), rgba(70, 150, 200, 0.3)); /* Semi-transparent Tek look */
padding: 10px;
margin-left: 10px;
margin-right: 10px;
}
.messagebox {
max-width: 400px;
display: inline-block;
margin-bottom: 5px;
}
.wrapperbox {
min-height: 100%;
width: 100%;
display: inline-flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.helpbox {
margin-left: 10px;
margin-right: 10px;
max-width: 50%;
display: inline-flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-shadow: none;
}
.helpbox .box {
background: linear-gradient(rgba(50, 50, 50, 0.7), rgba(70, 150, 200, 0.4)); /* Darker metallic theme */
margin-bottom: 10px;
}
.hidden {
display: none;
}
label {
background-color: rgba(40, 150, 150, 0.3);
padding: 2px;
margin-left: 5px;
font-size: 0.8em;
}
input:checked + label {
background-color: rgba(70, 150, 200, 0.7); /* Tek blue when checked */
}
.fillfood {
font-style: italic;
text-shadow: -1px -1px 0 rgba(85, 85, 85, 0.8), 1px -1px 0 rgba(85, 85, 85, 0.8), -1px 1px 0 rgba(85, 85, 85, 0.8), 1px 1px 0 rgba(85, 85, 85, 0.8);
}
.red {
color: red;
}
.redselect {
background-color: red;
}
.tooltip {
position: relative;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 200px;
background-color: rgba(50, 50, 50, 0.9); /* Tek-styled tooltip */
color: #fff;
text-align: center;
padding: 5px 0;
border-radius: 6px;
font-size: 0.9em;
font-weight: normal;
}
.tooltip:hover .tooltiptext {
visibility: visible;
top: 0px;
left: 100%;
}
.tooltip .tooltiptext {
opacity: 0;
transition: opacity 1s;
background: rgba(50, 50, 50, 0.9);
}
.tooltip:hover .tooltiptext {
opacity: 1;
}
.tooltip .tooltiptext:hover {
opacity: 0;
visibility: hidden;
}
.changes-box {
max-width: 300px; /* Restrict the width of the changes box */
background: linear-gradient(rgba(50, 50, 50, 0.8), rgba(70, 150, 200, 0.4)); /* Same theme */
text-align: left;
height: 400px; /* Adjust the height of the changes box */
padding: 10px; /* Add padding for better spacing */
margin-top: 20px; /* Adjust the top margin */
margin-bottom: 20px; /* Equal bottom margin */
overflow-y: auto; /* Allow scrolling if content exceeds the height */
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.changes-box h3 {
margin-bottom: 10px;
color: #66ccff; /* Tek blue */
}
.changes-list {
list-style-type: square;
padding-left: 20px;
}
.changes-list ul {
background-color: rgba(50, 50, 50, 0.5); /* Transparent gray */
padding: 5px;
border-radius: 5px;
}
.changes-list li {
margin-bottom: 5px;
font-size: 0.9em;
color: white;
text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.8), 1px -1px 0 rgba(0, 0, 0, 0.8), -1px 1px 0 rgba(0, 0, 0, 0.8), 1px 1px 0 rgba(0, 0, 0, 0.8);
}
.small-text {
font-size: 0.8em; /* Or any size you prefer */
color: #e0e0e0; /* Optional: Change color or any other styling */
}