50 lines
1.0 KiB
CSS
50 lines
1.0 KiB
CSS
.agent-card-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
width: 350px;
|
|
height: 150px;
|
|
|
|
border-radius: 0px 20px 20px 0px;
|
|
border-left: 3px solid #04B2D9;
|
|
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
padding: 10px;
|
|
}
|
|
.agent-card-text-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: start;
|
|
gap: 0px;
|
|
|
|
width: 200px;
|
|
}
|
|
.agent-card-picture {
|
|
object-fit: cover;
|
|
width: 120px;
|
|
height: 120px;
|
|
border-radius: 100%;
|
|
border: #02114A solid 0.5px;
|
|
background-color: white;
|
|
}
|
|
.agent-card-name {
|
|
font-family: Inter;
|
|
font-size: 20px;
|
|
color: #02114A;
|
|
font-weight: bold;
|
|
margin-bottom: 20px;
|
|
}
|
|
.agent-card-description {
|
|
font-family: Inter;
|
|
font-size: 12px;
|
|
color: rgb(19, 19, 19);
|
|
font-weight: bold;
|
|
}
|
|
.agent-card-phone {
|
|
font-size: 15px;
|
|
font-weight: 100;
|
|
color: rgba(0, 0, 0, 0.607);
|
|
font-family: Source Sans Pro;
|
|
} |