Fix most pages on small screens

This commit is contained in:
Eugen Rochko
2016-10-03 16:10:17 +02:00
parent 188c6f326b
commit b3c7c8700d
8 changed files with 96 additions and 23 deletions

View File

@@ -63,6 +63,13 @@
margin-top: 30px;
position: relative;
z-index: 2;
flex-direction: row;
}
.details-counters {
display: flex;
flex-direction: row;
order: 0;
}
.counter {
@@ -129,6 +136,26 @@
line-height: 18px;
padding: 5px 10px;
color: #d9e1e8;
order: 1;
}
@media screen and (max-width: 360px) {
.details {
display: block;
}
.bio {
text-align: center;
margin-bottom: 20px;
}
.counter {
flex: 1 1 auto;
}
.counter:last-child {
border-right: none;
}
}
}
@@ -186,6 +213,18 @@
cursor: default;
color: lighten(#282c37, 10%);
}
@media screen and (max-width: 360px) {
padding: 30px 20px;
a, .current, .next_page, .previous_page, .gap {
display: none;
}
.next_page, .previous_page {
display: inline-block;
}
}
}
.accounts-grid {