You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
1.5 KiB

.main-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
@media (max-width: 470px) {
margin-bottom: 132px;
}
@media (min-width: 470px) {
margin-bottom: 3.4375em;
}
}
.blog-content {
img {
max-width: 100%;
}
}
.footer {
text-align: left; //Why does text-align being center in .main-content affect the footer at all?!
position: fixed;
display: flex;
flex-grow: 1;
@media (max-width: 470px) { //mobile
justify-content: flex-end;
align-items: center;
flex-direction: column;
}
@media (min-width: 470px) { //desktop
justify-content: center;
align-items: center;
flex-direction: row;
height: 3.4375em;
}
bottom: 0;
left: 0px;
width: 100%;
img {
display: flex;
height: 30px*1.5;
@media (max-width: 470px) { //even smoler mobile
margin-top: 0.3125em;
margin-bottom: 0.3125em;
}
@media (min-width: 470px) { //desktop
margin-right: 0.625em;
}
}
}
.homepage-main {
img {
width: 25%;
height: 25%;
}
display: absolute;
text-align: center;
top: 0;
transform: translateY(25%);
}
.footer-entries {
flex: 1;
@media (min-width: 470px) { //desktop
margin-left: 0.625em;
}
a:not(:last-child) {
margin-right: 0.625em;
}
}
.white {
background-color: #222222;
}
.grey {
color: #ffffff;
}
.padding {
position: relative;
padding-left: 10px;
}
.padding-right {
position: relative;
padding-right: 10px;
}