You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
footer {
|
|
|
|
padding: 10px;
|
|
|
|
font-family: var(--post-font-family);
|
|
|
|
}
|
|
|
|
|
|
|
|
footer section {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
gap: 0rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer nav {
|
|
|
|
display: flex;
|
|
|
|
gap: 0rem;
|
|
|
|
margin: 0 0rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.socials {
|
|
|
|
justify-content: center;
|
|
|
|
/* flex-child */
|
|
|
|
flex-grow: 0;
|
|
|
|
/* flex-container */
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: flex-end;
|
|
|
|
// gap: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.social {
|
|
|
|
background-image: unset;
|
|
|
|
padding: 2px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.social>img {
|
|
|
|
color: #000000;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
padding: 18px;
|
|
|
|
filter: invert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.social {
|
|
|
|
&:hover {
|
|
|
|
&>img {
|
|
|
|
filter: invert(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[data-theme="dark"] {
|
|
|
|
.social {
|
|
|
|
&:hover {
|
|
|
|
&>img {
|
|
|
|
filter: invert(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&>img {
|
|
|
|
filter: invert(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|