website/scss/_mobile.scss

44 lines
593 B
SCSS
Raw Normal View History

@media only screen and (max-width: $mobile-max-width) {
2021-01-11 19:24:57 +01:00
#homeImage{
float: none;
}
#content{
padding-left: 10px;
padding-right: 10px;
}
#blog{
flex-direction: column;
}
article {
margin-bottom: 10px;
margin-right: 0;
}
#banner {
a {
display: block;
}
img {
max-width: none;
width: 100%;
}
}
#newestPost{
display: none;
}
2021-01-20 21:28:02 +01:00
article{
width: 95%;
}
.h-captcha{
width: 100%;
iframe {
max-width: 100%;
}
}
2021-03-28 20:20:28 +02:00
.header-homepage{
padding-top: 50px;
padding-bottom: 100px;
}
2021-01-11 19:24:57 +01:00
}