Footer styling fixes + updated github link.

This commit is contained in:
codevictory
2021-04-25 01:31:53 +03:00
parent 2591efa8b4
commit 071dce0807
3 changed files with 67 additions and 9 deletions

View File

@@ -33,20 +33,62 @@ main {
footer {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
margin-bottom: 30px;
.container {
display: flex;
justify-content: space-between;
width: 50%;
align-items: center;
align-items: start;
.middle img {
max-width: 55px;
margin-top: 10px;
}
.right {
text-align: right;
}
}
.mobile-middle {
visibility: hidden;
img {
max-width: 55px;
margin-top: 10px;
}
}
img:hover {
border-radius: 50%;
border: solid 2px;
}
}
@media screen and (max-width: 600px) {
footer {
.container {
width: 95% !important;
flex-direction: column;
align-items: center;
margin-top: 20px;
margin-bottom: 20px;
div {
text-align: center !important;
}
.middle {
visibility: hidden;
max-height: 15px;
}
}
.mobile-middle {
visibility: visible;
}
}
}