forked from oyd/ozgurkon-2020-site
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.
47 lines
787 B
47 lines
787 B
.speakers ul {
|
|
|
|
li .speaker {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
color: inherit;
|
|
|
|
.info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.speaker-img {
|
|
--size: 8rem;
|
|
height: var(--size);
|
|
min-width: var(--size);
|
|
border-radius: 100%;
|
|
background-size: cover;
|
|
margin: var(--space-2);
|
|
}
|
|
|
|
.speaker-company {
|
|
img {
|
|
max-height: 2rem;
|
|
margin: var(--space-1);
|
|
}
|
|
figcaption {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.speaker-name {
|
|
font-weight: 600;
|
|
margin: var(--space-1);
|
|
}
|
|
|
|
.speaker-company {
|
|
font-weight: 200;
|
|
opacity: .8;
|
|
margin: var(--space-1);
|
|
}
|
|
|
|
}
|
|
}
|
|
|