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.
70 lines
1.1 KiB
70 lines
1.1 KiB
1 year ago
|
/* styles.css */
|
||
|
.profiles-container {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
justify-content: space-around;
|
||
|
gap: 20px;
|
||
|
padding: 0;
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
.profile {
|
||
|
width: calc(33.333% - 20px);
|
||
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
||
|
border-radius: 10px;
|
||
|
overflow: hidden;
|
||
|
background: #fff;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.profile-image-container {
|
||
|
padding: 10px;
|
||
|
background: #f0f0f0;
|
||
|
}
|
||
|
|
||
|
.profile-image-container img {
|
||
|
width: 100px;
|
||
|
height: 100px;
|
||
|
border-radius: 50%;
|
||
|
display: block;
|
||
|
margin: auto;
|
||
|
}
|
||
|
|
||
|
.profile-details {
|
||
|
padding: 10px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.profile-details p {
|
||
|
margin: 5px 0;
|
||
|
}
|
||
|
|
||
|
.profile-details a {
|
||
|
display: inline-block;
|
||
|
background: #007bff;
|
||
|
color: #fff;
|
||
|
padding: 5px 15px;
|
||
|
text-decoration: none;
|
||
|
border-radius: 5px;
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
|
||
|
.profile-details a:hover {
|
||
|
background: #0056b3;
|
||
|
}
|
||
|
|
||
|
.pagination {
|
||
|
text-align: center;
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
|
||
|
.pagination a {
|
||
|
margin: 0 5px;
|
||
|
text-decoration: none;
|
||
|
color: #333;
|
||
|
}
|
||
|
|
||
|
.pagination a:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|