Added small Shadow to avatars - looks better

This commit is contained in:
Sagi Dayan 2015-06-15 18:15:36 +03:00
parent ed7519305b
commit 39a5697fd0

View file

@ -70,6 +70,8 @@ body.noscroll
-webkit-border-radius: 30%; -webkit-border-radius: 30%;
-moz-border-radius: 30%; -moz-border-radius: 30%;
border-radius: 30%; border-radius: 30%;
} }
/*.avatar { /*.avatar {
@ -82,6 +84,9 @@ body.noscroll
width: 80px; width: 80px;
height: 80px; height: 80px;
margin: 6px; /*centers the image in the parent element */ margin: 6px; /*centers the image in the parent element */
-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
} }
/* Added BY devMatan */ /* Added BY devMatan */
@ -109,6 +114,9 @@ body.noscroll
width: 80px; width: 80px;
height: 80px; height: 80px;
margin: 6px; margin: 6px;
-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
} }
.spacer{ .spacer{