Small changes to profile page, added friend request button

This commit is contained in:
Kevin Nobel
2017-01-11 14:00:10 +01:00
parent 019a89c865
commit cd93dcb719
5 changed files with 99 additions and 27 deletions

View File

@@ -1,4 +1,6 @@
.profile-box, .item-box, .post-box {
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.profile-box {
min-height: 150px;
@@ -23,8 +25,9 @@
background-color: #FFFFFF;
}
.item-box .profile-picture {
width: 25px;
.posts {
background-color: red;
margin-top: 20px;
}
.post-box {
@@ -43,4 +46,17 @@
float: right;
color: #aaaaaa;
font-size: 0.8em;
}
.friend-request {
float: right;
padding: 10px;
border-radius: 3px;
background-color: #845663;
color: #FFFFFF;
transition-duration: 250ms;
}
.friend-request:hover {
background-color: #B78996;
}