Spaces:
Running
Running
Update templates/index.html
Browse files- templates/index.html +4 -5
templates/index.html
CHANGED
@@ -178,8 +178,7 @@
|
|
178 |
.tag {
|
179 |
font-family: 'Andale Mono';
|
180 |
margin: auto;
|
181 |
-
color:
|
182 |
-
border-bottom: white 1px solid;
|
183 |
}
|
184 |
|
185 |
#location-name:hover {
|
@@ -267,7 +266,7 @@
|
|
267 |
lat, lon: {{ loc }}
|
268 |
</span>
|
269 |
|
270 |
-
<span id="show-more"
|
271 |
|
272 |
<span class="tag"><br>made by brayden moore<br></span>
|
273 |
|
@@ -504,10 +503,10 @@
|
|
504 |
if (additionalInfo.style.height === '0px') {
|
505 |
const scrollHeight = additionalInfo.scrollHeight;
|
506 |
additionalInfo.style.height = `${scrollHeight}px`;
|
507 |
-
showMore.innerHTML = '
|
508 |
} else {
|
509 |
additionalInfo.style.height = '0';
|
510 |
-
showMore.innerHTML = '
|
511 |
}
|
512 |
});
|
513 |
});
|
|
|
178 |
.tag {
|
179 |
font-family: 'Andale Mono';
|
180 |
margin: auto;
|
181 |
+
color:grey;
|
|
|
182 |
}
|
183 |
|
184 |
#location-name:hover {
|
|
|
266 |
lat, lon: {{ loc }}
|
267 |
</span>
|
268 |
|
269 |
+
<span id="show-more"><i style="margin-bottom:5px; color:var(--text-color);" id="more-button" class="fa-solid fa-caret-down"></i></span>
|
270 |
|
271 |
<span class="tag"><br>made by brayden moore<br></span>
|
272 |
|
|
|
503 |
if (additionalInfo.style.height === '0px') {
|
504 |
const scrollHeight = additionalInfo.scrollHeight;
|
505 |
additionalInfo.style.height = `${scrollHeight}px`;
|
506 |
+
showMore.innerHTML = '<i style="margin-bottom:10px; color:var(--text-color);" id="more-button" class="fa-solid fa-caret-up"></i>';
|
507 |
} else {
|
508 |
additionalInfo.style.height = '0';
|
509 |
+
showMore.innerHTML = '<i style="margin-bottom:10px; color:var(--text-color);" id="more-button" class="fa-solid fa-caret-down"></i>';
|
510 |
}
|
511 |
});
|
512 |
});
|