added news

This commit is contained in:
Tóth Richárd
2019-07-30 13:38:51 +02:00
parent 0e414de243
commit 27522d0053
16 changed files with 610 additions and 147 deletions

View File

@@ -317,6 +317,15 @@ a.addbutton.noti {
margin-bottom: 5px;
}
.list.news .date_separator {
color: black;
background-color: #19f40c;
}
.list.news .date_separator:hover {
background-color: #24991e;
}
.list_item label {
font-weight: bold;
}
@@ -604,6 +613,12 @@ h1.apply {
border-left: 3px solid black;
}
.info-wall {
border-top: 2px solid #0a4404;
border-left: none;
margin-top: 20px;
}
.toggle {
width: 50px;
height: 120px;
@@ -847,6 +862,12 @@ form#auto_filters > div > label {
margin: 20px;
}
.info-wall {
border-left: 2px solid #0a4404;
border-top: none;
margin-top: 0;
}
.diary_header {
width: 35%;
}

View File

@@ -97,3 +97,25 @@ div.list div.actual_balance:hover {
.full {
display: inline-block;
}
.diary_container {
display: flex;
justify-content: stretch;
flex-wrap: wrap;
flex-direction: column;
}
.diary_container > div {
flex: 1 1 50%;
}
@media (min-width: 1250px) {
.diary_container {
flex-direction: row;
}
.list.news, .list.entries {
width: 100%;
padding: 15px;
}
}