[7 files]: add social media links to footer

This commit is contained in:
revsuine 2024-11-26 18:57:42 +00:00
parent 8b04cfa06b
commit b5cec8cb30
Signed by: revsuine
GPG key ID: 3F257B68F5BC9339
7 changed files with 112 additions and 3 deletions

View file

@ -55,3 +55,50 @@ code {
opacity: 0.5;
}
.socials-block {
/* centre content inside div: */
display: flex;
justify-content: center;
height: 50px;
margin-top: 30px;
margin-bottom: -10px;
}
.socials-icon {
width: 50px;
margin-top: 0px;
/* https://codepen.io/sosuke/pen/Pjoqqp */
filter:
brightness(0)
saturate(100%)
invert(62%)
sepia(27%)
saturate(258%)
hue-rotate(356deg)
brightness(97%)
contrast(81%)
;
border: none;
}
.socials-icon:hover {
/* https://codepen.io/sosuke/pen/Pjoqqp */
filter:
brightness(0)
saturate(100%)
invert(6%)
sepia(2%)
saturate(156%)
hue-rotate(314deg)
brightness(108%)
contrast(80%)
;
}
/* required to clear the float */
.socials-block::after {
content: "";
clear: both;
display: table;
}