adding news feed chunks

This commit is contained in:
2016-06-13 22:17:46 +02:00
parent 68d7711186
commit 7ee14d7d1a
6 changed files with 98 additions and 32 deletions

View File

@@ -32,35 +32,50 @@
width:30%;
overflow:auto;
input, button {
border:none;
padding:0.5em 1em;
background:#F7F7F7;
}
button {
background:#CCC;
cursor:pointer;
font-weight:bold;
}
button:hover {
background:#F7F7F7;
}
#poster {
padding:1em;
background:#EEE;
border-bottom:1px solid #DDD;
#post, #name, #submit {
width:calc(100% - 2em);
border:none;
padding:0.5em 1em;
}
position:fixed;
#post {
margin-bottom:1em;
width:calc(100% - 2em);
}
#name {
width: calc(100% - 5.5em);
width: calc(100% - 6em);
}
#submit {
margin-left:1em;
width: 3em;
background:#CCC;
cursor:pointer;
font-weight:bold;
}
}
#posts {
font-family: Arial;
overflow:auto;
position:absolute;
top:0;
bottom:0;
width:100%;
.post {
margin:1em;
@@ -129,6 +144,16 @@
.fa.push {
margin-right:0.5em;
}
#next_posts {
margin: 1em;
display:none;
button {
border-radius: 0.5em;
width:100%;
}
}
}
}