2022-08-15 04:33:04 +03:00
|
|
|
@import 'styles/mixins.scss';
|
|
|
|
|
|
|
|
.pageContentContainer {
|
|
|
|
@include flexCenter;
|
|
|
|
}
|
|
|
|
|
2022-07-11 02:42:35 +03:00
|
|
|
.customPageContent {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 1.5em;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-08-15 04:33:04 +03:00
|
|
|
width: 80%;
|
|
|
|
max-width: 1200px;
|
2022-07-11 02:42:35 +03:00
|
|
|
|
|
|
|
color: var(--theme-text);
|
|
|
|
background-color: var(--theme-background-secondary);
|
2022-08-15 04:33:04 +03:00
|
|
|
padding: 1em;
|
|
|
|
|
|
|
|
// Allow the content to fill the width on narrow screens.
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2022-07-11 02:42:35 +03:00
|
|
|
|
|
|
|
hr {
|
|
|
|
margin: 1.35em 0;
|
|
|
|
border: 0;
|
|
|
|
border-top: solid 1px var(--theme-text-secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
div.summary {
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
}
|