Skip to content

Commit 600f8d8

Browse files
authored
Merge pull request #1076 from smit23patel/patch-2
Update head_custom.html
2 parents b6ac12a + f4205a0 commit 600f8d8

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

docs/_includes/head_custom.html

+13-5
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22

33

44
<style>
5+
/* Updated font size for better readability */
56
ul li span {
6-
font-size: 3em;
7+
font-size: 2em;
78
}
89

10+
/* Added transition for smoother hover effects */
911
.fa-youtube:hover {
1012
color: red;
13+
transition: color 0.3s;
1114
}
1215

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

2529
.fa-square-x-twitter:hover {
2630
color: black;
31+
transition: color 0.3s;
2732
}
2833

2934
.fa-linkedin:hover {
3035
color: #0077B5;
36+
transition: color 0.3s;
3137
}
3238

3339
.fa-discord:hover {
3440
color: white;
3541
background-color: #5865F2;
3642
border-radius: 5px;
43+
transition: background-color 0.3s;
3744
}
3845

3946
.hugging-face-logo {
40-
height: 50px;
41-
width: 50px;
47+
height: 60px;
48+
width: 60px;
4249
padding-top: 5px;
4350
filter: hue-rotate(210deg);
4451
}
4552

4653
footer ul li .hugging-face-logo {
47-
height: 15px;
48-
width: 15px;
54+
height: 20px;
55+
width: 20px;
4956
padding-top: 0px;
5057
padding: 0px;
5158
filter: hue-rotate(210deg);
5259
}
5360

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

0 commit comments

Comments
 (0)