mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:46:50 +08:00
e1f8014acd
If the feature is enabled, staff members can construct a URL and publish a topic for others to browse without the regular Discourse chrome. This is useful if you want to use Discourse like a CMS and publish topics as articles, which can then be embedded into other systems.
33 lines
435 B
SCSS
33 lines
435 B
SCSS
@import "common";
|
|
|
|
body {
|
|
background-color: $secondary;
|
|
color: $primary;
|
|
}
|
|
|
|
.published-page {
|
|
margin: 2em auto;
|
|
max-width: 800px;
|
|
|
|
h1 {
|
|
color: $header_primary;
|
|
}
|
|
|
|
.published-page-author {
|
|
margin-top: 1em;
|
|
margin-bottom: 2em;
|
|
display: flex;
|
|
|
|
.avatar {
|
|
margin-right: 1em;
|
|
}
|
|
.topic-created-at {
|
|
color: $primary-medium;
|
|
}
|
|
}
|
|
|
|
.published-page-body {
|
|
font-size: 1.25em;
|
|
}
|
|
}
|