extended user diary, added diary entry class, added view deposit option to user list

This commit is contained in:
Ricsi
2017-02-04 22:29:24 +01:00
parent 1ef4323c64
commit 805a5bc440
15 changed files with 593 additions and 439 deletions

45
_css/diary.css Normal file
View File

@@ -0,0 +1,45 @@
@media (min-width: 1000px) {
.list {
width: 80%;
}
.row {
display: flex;
}
.list .list_item {
width: 54%;
display: inline-block;
float: none;
}
.side_block {
float: right;
display: inline-block;
width: 35%;
clear: right;
margin: 10px 0px 10px 11% !important;
padding: 5px;
font-size: 18px;
line-height: 1.4;
background-color: #e6e6e6;
}
.extra_row {
display: none;
}
}
@media (max-width: 999px) {
.side_block {
display: none;
}
.extra_row {
display: block;
margin-top: 5px;
line-height: 1.2;
}
}