This commit is contained in:
Jordan Vidrine 2022-04-02 10:47:01 -05:00 committed by GitHub
parent 86a783b3ad
commit b20307377a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 5 deletions

View File

@ -1,4 +1,5 @@
body.crawler {
font-family: "Times New Roman", Times, serif;
> header {
width: 100%;
top: 0;
@ -15,6 +16,7 @@ body.crawler {
}
div#main-outlet {
padding: 10px;
div.post {
word-break: break-word;
img {
@ -28,7 +30,17 @@ body.crawler {
table-layout: fixed;
overflow: hidden;
margin-bottom: 1em;
td {
padding: 10px 0;
&.posters {
padding: 10px 20px;
}
}
th:first-of-type {
padding-left: 0;
}
@media (max-width: 850px) {
table-layout: auto;
td {
word-break: break-all;
&.posters {

View File

@ -25,11 +25,7 @@
<%= theme_lookup("header") %>
<header>
<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>
<% end %>
<h1><%=SiteSetting.title%></h1>
</a>
</header>
<div id="main-outlet" class="wrap">