2022-09-09 11:53:35 +00:00
|
|
|
.author {
|
|
|
|
align-items: flex-start;
|
|
|
|
display: flex;
|
|
|
|
margin-bottom: 2.4rem;
|
|
|
|
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-14 18:33:06 +00:00
|
|
|
.authorDetails {
|
2022-09-09 11:53:35 +00:00
|
|
|
display: flex;
|
|
|
|
flex: 1;
|
|
|
|
padding-right: 1.2rem;
|
|
|
|
width: max-content;
|
|
|
|
}
|
|
|
|
|
2022-10-14 18:33:06 +00:00
|
|
|
.authorDetailsWrapper {
|
2022-09-09 11:53:35 +00:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2022-10-14 18:33:06 +00:00
|
|
|
.authorName {
|
2022-09-09 11:53:35 +00:00
|
|
|
border: none !important;
|
|
|
|
font-size: 1.7rem;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 0.8rem;
|
|
|
|
}
|
|
|
|
|
2022-10-14 18:33:06 +00:00
|
|
|
.authorAbout {
|
2022-09-09 11:53:35 +00:00
|
|
|
font-size: 1.5rem;
|
|
|
|
color: rgb(0 0 0 / 60%);
|
|
|
|
}
|
|
|
|
|
2022-10-14 18:33:06 +00:00
|
|
|
.authorSubscribe {
|
2022-09-09 11:53:35 +00:00
|
|
|
@include media-breakpoint-down(lg) {
|
|
|
|
padding: 0 0 0 42px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
background: #f7f7f7;
|
|
|
|
border: none;
|
|
|
|
display: inline-block;
|
|
|
|
height: 32px;
|
|
|
|
margin-right: 0.4rem;
|
|
|
|
position: relative;
|
2022-10-14 18:33:06 +00:00
|
|
|
transition: background-color 0.2s;
|
2022-09-09 11:53:35 +00:00
|
|
|
vertical-align: middle;
|
|
|
|
width: 32px;
|
|
|
|
|
|
|
|
&::before {
|
2022-10-19 21:18:56 +00:00
|
|
|
background-image: url(/icons/user-link-default.svg);
|
2022-09-09 11:53:35 +00:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 50% 50%;
|
|
|
|
background-size: contain;
|
|
|
|
content: '';
|
|
|
|
filter: invert(1);
|
|
|
|
height: 18px;
|
|
|
|
left: 50%;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2022-10-14 18:33:06 +00:00
|
|
|
transition: filter 0.2s;
|
2022-09-09 11:53:35 +00:00
|
|
|
width: 18px;
|
|
|
|
}
|
2022-10-14 18:33:06 +00:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: #000;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
filter: invert(0);
|
|
|
|
}
|
|
|
|
}
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a[href*='facebook.com/'] {
|
|
|
|
&::before {
|
|
|
|
background-image: url(/icons/facebook-white.svg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a[href*='twitter.com/'] {
|
|
|
|
&::before {
|
|
|
|
background-image: url(/icons/twitter-white.svg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a[href*='telegram.com/'] {
|
|
|
|
&::before {
|
|
|
|
background-image: url(/icons/telegram-white.svg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a[href*='vk.com/'] {
|
|
|
|
&::before {
|
|
|
|
background-image: url(/icons/vk-white.svg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a[href*='tumblr.com/'] {
|
|
|
|
&::before {
|
|
|
|
background-image: url(/icons/tumblr-white.svg);
|
|
|
|
}
|
|
|
|
}
|
2022-10-14 18:33:06 +00:00
|
|
|
|
|
|
|
a[href*='instagram.com/'] {
|
|
|
|
&::before {
|
|
|
|
background-image: url(/icons/instagram-white.svg);
|
|
|
|
}
|
|
|
|
}
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
|
2022-10-14 18:33:06 +00:00
|
|
|
.buttonSubscribe {
|
2022-09-09 11:53:35 +00:00
|
|
|
align-items: center;
|
|
|
|
aspect-ratio: 1/1;
|
|
|
|
background: #f6f6f6;
|
|
|
|
border-radius: 100%;
|
|
|
|
display: inline-flex;
|
|
|
|
float: right;
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-14 18:33:06 +00:00
|
|
|
.buttonLabel {
|
2022-09-09 11:53:35 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2022-10-14 18:33:06 +00:00
|
|
|
.buttonWrite {
|
2022-09-09 11:53:35 +00:00
|
|
|
background: #f7f7f7;
|
|
|
|
color: #000;
|
|
|
|
display: inline-flex;
|
2022-10-14 18:33:06 +00:00
|
|
|
|
2022-09-09 11:53:35 +00:00
|
|
|
@include font-size(1.5rem);
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: 15px;
|
|
|
|
}
|
|
|
|
}
|
2022-10-14 18:33:06 +00:00
|
|
|
|
|
|
|
.authorPage {
|
|
|
|
.authorName {
|
|
|
|
@include font-size(3.4rem);
|
|
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 0.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.authorAbout {
|
|
|
|
color: #696969;
|
|
|
|
@include font-size(1.7rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
.authorSubscribe {
|
|
|
|
display: flex;
|
|
|
|
margin-top: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.authorDetails {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttonLabel {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttonSubscribe {
|
|
|
|
aspect-ratio: auto;
|
|
|
|
background-color: #000;
|
|
|
|
border-radius: 2px;
|
|
|
|
float: none;
|
|
|
|
padding-bottom: 0.6rem;
|
|
|
|
padding-top: 0.6rem;
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
margin-right: 0.5em;
|
|
|
|
|
|
|
|
img {
|
|
|
|
filter: invert(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.icon img {
|
|
|
|
filter: invert(0.7);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttonSubscribe img {
|
|
|
|
vertical-align: text-top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
margin-right: 1.6rem;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
}
|