2022-08-15 03:33:04 +02:00
|
|
|
@import 'styles/mixins.scss';
|
|
|
|
|
|
|
|
.pageContentContainer {
|
|
|
|
@include flexCenter;
|
|
|
|
}
|
|
|
|
|
2022-07-11 01:42:35 +02:00
|
|
|
.customPageContent {
|
2022-09-10 21:08:22 +02:00
|
|
|
font-size: 1.1rem;
|
|
|
|
line-height: 1.6em;
|
2022-07-11 01:42:35 +02:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-08-30 08:17:12 +02:00
|
|
|
color: var(--theme-color-palette-0);
|
|
|
|
background-color: var(--theme-color-palette-4);
|
2022-09-10 08:23:24 +02:00
|
|
|
padding: calc(2 * var(--content-padding));
|
2022-08-30 08:17:12 +02:00
|
|
|
border-radius: var(--theme-rounded-corners);
|
2022-09-11 05:16:36 +02:00
|
|
|
width: clamp(300px, 80%, 50em);
|
2022-08-15 03:33:04 +02:00
|
|
|
|
|
|
|
// Allow the content to fill the width on narrow screens.
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2022-07-11 01:42:35 +02:00
|
|
|
|
|
|
|
hr {
|
|
|
|
margin: 1.35em 0;
|
|
|
|
border: 0;
|
|
|
|
border-top: solid 1px var(--theme-text-secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
div.summary {
|
2022-09-14 08:37:45 +02:00
|
|
|
font-size: 1.1rem;
|
2022-07-11 01:42:35 +02:00
|
|
|
}
|
2022-09-10 08:23:24 +02:00
|
|
|
|
|
|
|
p {
|
|
|
|
margin: unset;
|
|
|
|
}
|
2022-07-11 01:42:35 +02:00
|
|
|
}
|