2019-04-30 18:00:55 +03:00
|
|
|
.author {
|
2020-09-24 05:14:38 +03:00
|
|
|
background-color: var(--white-color);
|
2019-04-30 18:00:55 +03:00
|
|
|
display: flex;
|
|
|
|
margin-top: 30px;
|
|
|
|
padding: 30px 20px;
|
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2019-04-30 18:00:55 +03:00
|
|
|
.author-image-placeholder {
|
|
|
|
border-radius: 50%;
|
|
|
|
flex-shrink: 0;
|
|
|
|
height: 70px;
|
|
|
|
overflow: hidden;
|
|
|
|
width: 70px;
|
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2019-04-30 18:00:55 +03:00
|
|
|
.author-wrapper {
|
|
|
|
margin-left: 25px;
|
|
|
|
max-width: 550px;
|
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2019-04-30 18:00:55 +03:00
|
|
|
.author-header {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2019-04-30 18:00:55 +03:00
|
|
|
.author-header-wrapper {
|
|
|
|
position: relative;
|
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2019-04-30 18:00:55 +03:00
|
|
|
.author-name {
|
|
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
|
|
display: flex;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 800;
|
|
|
|
margin-bottom: 0;
|
|
|
|
position: relative;
|
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
|
|
|
.author-name::after {
|
2020-09-24 05:14:38 +03:00
|
|
|
content: "\e92e";
|
2020-09-24 05:18:34 +03:00
|
|
|
font-family: IVEEL, sans-serif;
|
2020-09-24 05:14:38 +03:00
|
|
|
font-size: 19px;
|
|
|
|
margin-left: 1px;
|
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2019-04-30 18:00:55 +03:00
|
|
|
.author-social {
|
2020-09-24 05:14:38 +03:00
|
|
|
background-color: var(--dark-gray-color);
|
2019-04-30 18:00:55 +03:00
|
|
|
border-radius: 3px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
font-size: 12px;
|
|
|
|
left: 100%;
|
|
|
|
line-height: 1;
|
|
|
|
margin-left: -26px;
|
|
|
|
margin-top: 5px;
|
|
|
|
opacity: 0;
|
2020-09-24 05:18:34 +03:00
|
|
|
padding: 8px 0;
|
2019-04-30 18:00:55 +03:00
|
|
|
pointer-events: none;
|
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
transform: translateY(5px);
|
2020-09-24 05:14:38 +03:00
|
|
|
transition: opacity 0.2s var(--animation-base), transform 0.2s var(--animation-base);
|
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
|
|
|
.author-social::before {
|
2020-09-24 05:14:38 +03:00
|
|
|
color: var(--dark-gray-color);
|
|
|
|
content: "\e900";
|
2020-09-24 05:18:34 +03:00
|
|
|
font-family: IVEEL, sans-serif;
|
2020-09-24 05:14:38 +03:00
|
|
|
font-size: 19px;
|
|
|
|
left: 7px;
|
|
|
|
position: absolute;
|
|
|
|
top: -12px;
|
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.author-social.enabled {
|
|
|
|
opacity: 1;
|
|
|
|
pointer-events: auto;
|
|
|
|
transform: translateY(0);
|
2019-04-30 18:00:55 +03:00
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2019-04-30 18:00:55 +03:00
|
|
|
.author-social-item {
|
2020-09-24 05:14:38 +03:00
|
|
|
color: var(--white-color);
|
2019-04-30 18:00:55 +03:00
|
|
|
font-weight: 700;
|
|
|
|
padding: 5px 11px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2020-09-24 05:14:38 +03:00
|
|
|
.author-social-item:hover {
|
|
|
|
color: var(--primary-color);
|
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2019-04-30 18:00:55 +03:00
|
|
|
.author-location-icon {
|
|
|
|
position: relative;
|
|
|
|
top: 1px;
|
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2019-04-30 18:00:55 +03:00
|
|
|
.author-bio {
|
|
|
|
font-size: 15px;
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
2020-09-24 05:18:34 +03:00
|
|
|
|
2019-04-30 18:00:55 +03:00
|
|
|
.author-location {
|
2020-09-24 05:14:38 +03:00
|
|
|
color: var(--secondary-text-color);
|
2019-04-30 18:00:55 +03:00
|
|
|
font-size: 11px;
|
|
|
|
font-weight: 800;
|
2020-09-24 05:14:38 +03:00
|
|
|
letter-spacing: 0.5px;
|
2019-04-30 18:00:55 +03:00
|
|
|
margin-left: -2px;
|
|
|
|
margin-top: 12px;
|
|
|
|
text-transform: uppercase;
|
2020-09-24 05:14:38 +03:00
|
|
|
}
|