Credits section, new link underlines

This commit is contained in:
bingus_violet 2025-04-08 00:26:34 -05:00
parent 65dde5eb7f
commit f1f28b7de4
3 changed files with 31 additions and 1 deletions

View file

@ -345,6 +345,12 @@
"YIP" "YIP"
], ],
"italicized": true "italicized": true
},
{
"words": [
"Miley"
],
"color": "rgb(255, 255, 175)"
} }
] ]
} }

View file

@ -102,6 +102,12 @@
{SELECTED_VIDEO} {SELECTED_VIDEO}
<hr>
<h2>Credits</h2>
<ul>
<li>New favicon created by <a href="https://x.com/sandyisnumber1">Miley!! (@sandyisnumber1)</a> on Twitter</li>
</ul>
{PATH_STATS} {PATH_STATS}
<p>{WEATHER_TEXT}</p> <p>{WEATHER_TEXT}</p>

View file

@ -76,7 +76,7 @@ body, html {
} }
a { a {
display: inline-block; display: inline;
transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1); transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
} }
@ -84,6 +84,15 @@ a[href] {
color: rgb(175, 225, 255); color: rgb(175, 225, 255);
} }
a:not(.chip)[href] {
text-decoration: none;
background-image: linear-gradient(rgb(175, 225, 255), rgb(175, 225, 255));
background-size: 100% 1px;
background-position-y: 100%;
background-repeat: no-repeat;
}
h3 { h3 {
font-size: 1.5rem; font-size: 1.5rem;
@ -267,6 +276,15 @@ ul, ol {
max-width: 90%; max-width: 90%;
} }
ul {
list-style: none;
}
ul > li::before {
content: "-";
padding-right: 8px;
}
li { li {
font-size: 1.2rem; font-size: 1.2rem;
padding: 5px 0; padding: 5px 0;