30 lines
403 B
CSS
30 lines
403 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
padding-right: 25px;
|
|
}
|
|
|
|
img {
|
|
height: 100px;
|
|
scale: 130%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.textContainer {
|
|
font-size: 16pt;
|
|
font-weight: bold;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.divider {
|
|
animation: blink 3s step-end infinite;
|
|
}
|
|
|
|
@keyframes blink {
|
|
50% {
|
|
opacity: 0;
|
|
}
|
|
}
|