Added group view

This commit is contained in:
Kevin Nobel
2017-01-11 15:42:32 +01:00
parent b4c7bfb1ef
commit 5be19ce91d
5 changed files with 162 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
.profile-box, .item-box, .post-box {
.profile-box, .item-box, .item-box-full-width, .post-box {
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
@@ -8,7 +8,7 @@
background-color: #FFFFFF;
}
.profile-box .profile-picture {
.profile-box .profile-picture, .profile-box .group-picture {
width: 150px;
height: 150px;
margin: 0 20px 20px 0;
@@ -18,13 +18,20 @@
padding-top: 50px;
}
.item-box {
width: calc(50% - 60px);
.item-box, .item-box-full-width {
margin: 20px 0 0 0;
padding: 25px;
background-color: #FFFFFF;
}
.item-box {
width: calc(50% - 60px);
}
.item-box-full-width {
width: calc(100% - 50px);
}
.posts {
z-index: -1;
}
@@ -47,7 +54,7 @@
font-size: 0.8em;
}
.friend-request {
.profile-button {
float: right;
padding: 10px;
border-radius: 5px;
@@ -56,6 +63,6 @@
transition-duration: 250ms;
}
.friend-request:hover {
.profile-button:hover {
background-color: #B78996;
}