mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 22:50:45 +08:00
121 lines
1.8 KiB
SCSS
121 lines
1.8 KiB
SCSS
body.crawler {
|
|
> header {
|
|
width: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
z-index: z("max");
|
|
background-color: #fff;
|
|
padding: 10px;
|
|
box-shadow: none;
|
|
border-bottom: 1px solid $primary-low-mid;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
div#main-outlet {
|
|
div.post {
|
|
word-break: break-word;
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
.raw-topic-link {
|
|
display: block;
|
|
font-weight: bold;
|
|
margin-bottom: 0.25em;
|
|
}
|
|
|
|
.topic-list {
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 3em;
|
|
border-top: 1px solid $primary-low-mid;
|
|
}
|
|
}
|
|
|
|
.crawler-topic-title {
|
|
margin-top: 0.5em;
|
|
}
|
|
|
|
.crawler-post {
|
|
margin-top: 1em;
|
|
margin-bottom: 2em;
|
|
padding-top: 1.5em;
|
|
border-top: 1px solid $primary-low;
|
|
}
|
|
|
|
.crawler-post-meta {
|
|
margin-bottom: 1em;
|
|
.creator {
|
|
word-break: break-all;
|
|
a {
|
|
font-weight: bold;
|
|
}
|
|
@include breakpoint(tablet) {
|
|
display: inline-block;
|
|
margin-bottom: 0.25em;
|
|
}
|
|
}
|
|
}
|
|
|
|
.crawler-post-infos {
|
|
color: $primary-high;
|
|
display: inline-block;
|
|
@include breakpoint(tablet, min-width) {
|
|
float: right;
|
|
}
|
|
[itemprop="position"] {
|
|
float: left;
|
|
margin-right: 0.5em;
|
|
}
|
|
}
|
|
|
|
#breadcrumbs {
|
|
margin-bottom: 0.5em;
|
|
font-size: $font-up-1;
|
|
> div {
|
|
margin-bottom: 0.15em;
|
|
}
|
|
.badge-category-bg {
|
|
background-color: $secondary-high;
|
|
}
|
|
.category-title {
|
|
color: $primary;
|
|
}
|
|
}
|
|
|
|
.crawler-tags-list {
|
|
span {
|
|
display: block;
|
|
margin-bottom: 0.15em;
|
|
}
|
|
}
|
|
|
|
.crawler-linkback-list {
|
|
margin-top: 1em;
|
|
a {
|
|
display: block;
|
|
padding: 0.5em 0;
|
|
border-top: 1px solid $primary-low;
|
|
}
|
|
}
|
|
|
|
.crawler-nav {
|
|
margin: 1em 0;
|
|
ul {
|
|
margin: 0;
|
|
list-style-type: none;
|
|
}
|
|
li {
|
|
display: inline-block;
|
|
}
|
|
a {
|
|
display: inline-block;
|
|
padding: 0.5em 1em 0.5em 0;
|
|
}
|
|
}
|