Skip to content

Commit

Permalink
Merge pull request #1076 from smit23patel/patch-2
Browse files Browse the repository at this point in the history
Update head_custom.html
  • Loading branch information
doberst authored Oct 28, 2024
2 parents b6ac12a + f4205a0 commit 600f8d8
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions docs/_includes/head_custom.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@


<style>
/* Updated font size for better readability */
ul li span {
font-size: 3em;
font-size: 2em;
}

/* Added transition for smoother hover effects */
.fa-youtube:hover {
color: red;
transition: color 0.3s;
}

/*
Expand All @@ -20,38 +23,43 @@
background: -webkit-radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
background-clip: text;
-webkit-background-clip: text;
transition: background 0.3s;
}

.fa-square-x-twitter:hover {
color: black;
transition: color 0.3s;
}

.fa-linkedin:hover {
color: #0077B5;
transition: color 0.3s;
}

.fa-discord:hover {
color: white;
background-color: #5865F2;
border-radius: 5px;
transition: background-color 0.3s;
}

.hugging-face-logo {
height: 50px;
width: 50px;
height: 60px;
width: 60px;
padding-top: 5px;
filter: hue-rotate(210deg);
}

footer ul li .hugging-face-logo {
height: 15px;
width: 15px;
height: 20px;
width: 20px;
padding-top: 0px;
padding: 0px;
filter: hue-rotate(210deg);
}

ul li .hugging-face-logo:hover {
filter: hue-rotate(0deg);
transition: filter 0.3s;
}
</style>

0 comments on commit 600f8d8

Please sign in to comment.