PeerTube/client/src/app/+about/about-instance/about-instance.component.scss

90 lines
1.3 KiB
SCSS
Raw Normal View History

2021-05-27 11:25:00 -05:00
@use '_variables' as *;
@use '_mixins' as *;
2018-01-31 10:47:36 -06:00
2018-06-27 07:21:03 -05:00
.about-instance-title {
2019-01-10 04:12:41 -06:00
display: flex;
justify-content: space-between;
2019-08-23 08:23:27 -05:00
.title {
2019-01-10 04:12:41 -06:00
font-size: 20px;
2019-08-23 08:23:27 -05:00
font-weight: $font-semibold;
2019-01-10 04:12:41 -06:00
}
2019-08-23 08:23:27 -05:00
.contact-admin {
@include peertube-button-link;
2019-01-10 04:12:41 -06:00
@include orange-button;
2019-04-25 03:14:35 -05:00
height: fit-content;
2019-01-10 04:12:41 -06:00
}
2018-06-27 07:21:03 -05:00
}
.instance-badges {
font-size: 16px;
2021-01-20 03:45:48 -06:00
margin-bottom: 20px;
.badge {
2021-06-07 10:38:31 -05:00
@include margin-right(5px);
font-size: 12px;
font-weight: $font-semibold;
&.category {
background-color: pvar(--mainColor);
}
}
}
2018-01-31 10:47:36 -06:00
.section-title {
font-weight: $font-semibold;
2019-08-23 08:23:27 -05:00
font-size: 16px;
2018-01-31 10:47:36 -06:00
margin-bottom: 5px;
2019-08-23 08:23:27 -05:00
display: flex;
align-items: center;
}
.middle-title {
@include in-content-small-title;
margin-top: 0;
2019-08-23 08:23:27 -05:00
margin-bottom: 25px;
2018-01-31 10:47:36 -06:00
}
2019-08-23 08:23:27 -05:00
.block {
margin-bottom: 75px;
font-size: 15px;
2018-01-31 10:47:36 -06:00
}
2019-02-21 08:44:12 -06:00
.short-description {
margin-top: 10px;
}
2019-02-21 08:44:12 -06:00
.short-description .dedicated-to-nsfw {
margin-top: 20px;
font-weight: $font-semibold;
}
2020-08-10 18:47:45 -05:00
.anchor-link {
@include disable-outline;
position: relative;
2021-04-28 09:41:07 -05:00
&:hover,
&:active {
2020-08-10 18:47:45 -05:00
&::after {
2021-06-07 10:38:31 -05:00
@include margin-left(0.2em);
2020-08-10 18:47:45 -05:00
content: '#';
display: inline-block;
}
}
2021-04-28 09:41:07 -05:00
.middle-title,
.section-title {
2020-08-10 18:47:45 -05:00
display: inline-block;
}
.section-title {
2020-12-14 02:30:53 -06:00
color: var(--mainForegroundColor);
2020-08-10 18:47:45 -05:00
}
}