113 lines
1.8 KiB
SCSS
113 lines
1.8 KiB
SCSS
@import '../apps/red-ui/src/assets/styles/variables';
|
|
@import 'manual-sidebar';
|
|
|
|
.toolbar {
|
|
box-shadow: none;
|
|
padding: 21px 24px;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
.topic-content {
|
|
.breadcrumb-container {
|
|
// if paligo exports with sticky header, the breadcumbs disappear under the header without this margin
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.breadcrumb {
|
|
font-size: 14px;
|
|
line-height: 18px;
|
|
font-weight: 600;
|
|
|
|
a {
|
|
color: $accent;
|
|
|
|
&:hover {
|
|
color: $primary;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.breadcrumb-node {
|
|
color: $primary;
|
|
}
|
|
}
|
|
}
|
|
|
|
main article {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#topic-content > section > .titlepage h2.title {
|
|
margin: 0 0 24px;
|
|
@include heading-3;
|
|
}
|
|
|
|
.image-viewport {
|
|
margin: auto;
|
|
|
|
img {
|
|
margin: 16px auto;
|
|
box-shadow: 0 3px 12px 5px rgb(40 50 65 / 14%);
|
|
}
|
|
}
|
|
|
|
.pager {
|
|
margin-top: 30px;
|
|
margin-bottom: 30px;
|
|
padding: 0;
|
|
}
|
|
|
|
.pager li > a,
|
|
.pager li > span {
|
|
@include button;
|
|
}
|
|
|
|
.warning,
|
|
.note,
|
|
.important,
|
|
.caution,
|
|
.tip {
|
|
margin-top: 32px;
|
|
margin-bottom: 32px;
|
|
padding: 16px 24px 16px 68px;
|
|
background-color: $white;
|
|
border-left: 4px solid $primary;
|
|
|
|
&:before {
|
|
color: $primary;
|
|
width: 20px;
|
|
height: 20px;
|
|
text-align: center;
|
|
left: 24px;
|
|
top: calc(50% - 15px);
|
|
}
|
|
|
|
h3 {
|
|
padding: 0;
|
|
@include heading-5;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
p {
|
|
line-height: 20px;
|
|
}
|
|
}
|
|
|
|
.topic-content > section > p {
|
|
margin: 24px 0;
|
|
}
|
|
|
|
.section-toc {
|
|
@include card;
|
|
|
|
li:first-child {
|
|
margin-top: 16px;
|
|
}
|
|
|
|
li:last-child {
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|