Even more responsiveness changes

This commit is contained in:
Dominik V. Salonen 2015-12-26 18:42:09 +01:00
parent 28d9fb3d67
commit feb5f3abb9
1 changed files with 12 additions and 3 deletions

View File

@ -59,14 +59,23 @@ body {
font-size: 12pt; font-size: 12pt;
display: inline-block; display: inline-block;
padding: 5px; padding: 5px;
width: 20%; width: 15%;
animation: rise 1s ease-out; animation: rise 1s ease-out;
} }
@media all and (max-width: 380px){ @media all and (max-width: 360px){
.links li { .links li {
width: 40%; width: 40%;
margin-bottom: 20px; margin-bottom: 5px;
padding: 5px;
}
}
@media all and (max-width: 600px){
.links li {
width: 20%;
margin-bottom: 5px;
padding: 5px;
} }
} }