You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

35 lines
763 B

.friends {
display: flex;
flex-wrap: wrap;
}
.friends .a-friend {
display: flex;
margin: 10px 10px 0 0;
text-decoration: none;
font-weight: 300;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
padding: 10px;
transition: box-shadow 0.2s, transform 0.2s;
}
.friends .a-friend:hover {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.friends .a-friend:active {
transform: scale(0.95);
}
.friends .a-friend .blog-avatar {
background-color: white;
border-radius: 50%;
width: 50px;
height: 50px;
}
.friends .a-friend .text-container {
margin-left: 10px;
}
.friends .a-friend .text-container .name {
font-size: 14px;
}
.friends .a-friend .text-container .description {
font-size: 12px;
margin-top: 5px;
}