linting (#16360)
This commit is contained in:
parent
86a783b3ad
commit
b20307377a
|
@ -1,4 +1,5 @@
|
||||||
body.crawler {
|
body.crawler {
|
||||||
|
font-family: "Times New Roman", Times, serif;
|
||||||
> header {
|
> header {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
top: 0;
|
top: 0;
|
||||||
|
@ -15,6 +16,7 @@ body.crawler {
|
||||||
}
|
}
|
||||||
|
|
||||||
div#main-outlet {
|
div#main-outlet {
|
||||||
|
padding: 10px;
|
||||||
div.post {
|
div.post {
|
||||||
word-break: break-word;
|
word-break: break-word;
|
||||||
img {
|
img {
|
||||||
|
@ -28,7 +30,17 @@ body.crawler {
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
|
td {
|
||||||
|
padding: 10px 0;
|
||||||
|
&.posters {
|
||||||
|
padding: 10px 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
th:first-of-type {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
@media (max-width: 850px) {
|
@media (max-width: 850px) {
|
||||||
|
table-layout: auto;
|
||||||
td {
|
td {
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
&.posters {
|
&.posters {
|
||||||
|
|
|
@ -25,11 +25,7 @@
|
||||||
<%= theme_lookup("header") %>
|
<%= theme_lookup("header") %>
|
||||||
<header>
|
<header>
|
||||||
<a href="<%= path "/" %>">
|
<a href="<%= path "/" %>">
|
||||||
<%- if SiteSetting.site_logo_url.present? %>
|
|
||||||
<img src="<%=SiteSetting.site_logo_url%>" alt="<%=SiteSetting.title%>" id="site-logo" style="max-width: 150px;">
|
|
||||||
<%- else %>
|
|
||||||
<h1><%=SiteSetting.title%></h1>
|
<h1><%=SiteSetting.title%></h1>
|
||||||
<% end %>
|
|
||||||
</a>
|
</a>
|
||||||
</header>
|
</header>
|
||||||
<div id="main-outlet" class="wrap">
|
<div id="main-outlet" class="wrap">
|
||||||
|
|
Loading…
Reference in New Issue