xssbook/public/css/people.css

44 lines
746 B
CSS
Raw Normal View History

2023-01-21 14:08:22 +00:00
body {
background-color: #f0f2f5;
2023-01-22 19:41:39 +00:00
}
#users {
display: flex;
flex-direction: column;
align-items: center;
}
.person {
width: 30em;
height: fit-content;
background-color: white;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
margin-bottom: 1.5em;
display: flex;
flex-direction: row;
}
.profile, .profile img {
border-radius: 10px 0px 0px 10px;
width: 10em;
height: 10em;
padding: 0;
display: block;
background-color: #e4e6e8;
flex-shrink: 0;
}
.info {
margin: 20px;
display: flex;
flex-direction: column;
}
.info span {
width: 280px;
margin-bottom: 5px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
2023-01-21 14:08:22 +00:00
}