Archived
1
0

looking pretty good by now

This commit is contained in:
ZiRo 2016-02-15 21:20:37 +01:00
parent 80041baf1e
commit 539033ec6d
4 changed files with 55 additions and 44 deletions

View File

@ -34,13 +34,6 @@ section {
text-align: center; text-align: center;
} }
input {
width: 70%;
}
input.button {
width: 25%;
}
textarea { textarea {
width: 350px; width: 350px;
@ -63,23 +56,31 @@ pre {
word-wrap: break-word; word-wrap: break-word;
} }
td { table {
background-color: #1C1C1C; margin: auto;
}
table.board-list-table {
width: 100%;
}
table tbody td {
margin: 0;
padding: 4px 15px 4px 4px;
text-align: left;
}
table thead th {
border: 1px solid #000333;
padding: 4px 15px 5px 5px;
background: #98E;
color: #000333;
text-align: left;
white-space: nowrap;
}
table tbody tr:nth-of-type( even ) {
background-color: #D6DAF0;
} }
.board_td {
position: relative; left: 2px;
}
.posts_td {
position: relative; left: -2px;
}
#overview_graph {
position: relative;
top: 2px;
background: #1C1C1C;
}
.reply, .ukko_thread_header { .reply, .ukko_thread_header {
background: #D6DAF0; background: #D6DAF0;
@ -141,17 +142,9 @@ a, a:visited {
display: inline-block; display: inline-block;
} }
th {
background: #4DA6BD;
font-size: 10pt;
padding-left: 10px;
padding-right: 15px;
}
input, textarea { input, textarea {
color: whitesmoke;
background: #2d2d2d;
border-color: #4D28CA;
} }
@ -204,12 +197,14 @@ input, textarea {
.memearrows { .memearrows {
color: #789922; color: #789922;
margin-left: none;
} }
.redtext { .redtext {
color: #AF0A0F; color: #AF0A0F;
font-size: 12pt; font-size: 12pt;
font-weight: bold; font-weight: bold;
margin-left: none;
} }
.spoiler { .spoiler {
@ -246,12 +241,17 @@ input, textarea {
padding: 3px 5px 3px 5px; padding: 3px 5px 3px 5px;
} }
.post_body > p {
margin: 0px 0px;
}
.post_body { .post_body {
display: inline; margin-left: 15px;
margin-top: 10px;
margin-bottom: 5px;
}
.post_body_line {
margin-left: inherit;
margin-top: 2px;
margin-bottom: 2px;
padding-top: 0px;
padding-bottom: 0px;
} }
.post { .post {
@ -260,8 +260,15 @@ input, textarea {
width: 80%; width: 80%;
} }
.backlink, .backlink:hover, .backlink:visited, .backlink:visited:hover {
margin-left: none;
color: #D00
}
.origin { .origin {
float: right; float: right;
padding-right: 5px;
padding-top: 5px;
} }
#postform_attachment { #postform_attachment {
@ -275,7 +282,7 @@ input, textarea {
} }
#captcha_img { #captcha_img {
background: #4DA6BD; background: white;
} }
figure { figure {

View File

@ -41,13 +41,14 @@
<td class="board_td"> <td class="board_td">
{{! todo: move boardgraph into its own file like postsgraph }} {{! todo: move boardgraph into its own file like postsgraph }}
<table id="board_graph"> <table id="board_graph">
<tbody> <thead>
<tr> <tr>
<th> Board </th> <th> Board </th>
<th> Posts this Hour </th> <th> Posts this Hour </th>
<th> Posts Today </th> <th> Posts Today </th>
<th> Total </th> <th> Total </th>
</tr> </tr>
</thead>
{{# boardgraph}} {{# boardgraph}}
<tr> <tr>
<td> <td>

View File

@ -11,9 +11,12 @@
{{/IsClearnet}} {{/IsClearnet}}
</div> </div>
<legend> <legend>
<span class="subject">{{Subject}}</span> <span class="name">{{Name}}</span><time datetime="{{DateRFC}}">{{Date}}</time> <span class="subject">{{Subject}}</span>
<a href="{{PostURL}}" class="postno">No.</a><a onclick="nntpchan_backlink('{{ShortHash}}');" title="{{MessageID}}">{{ShortHash}}</a> <span class="name">{{Name}}</span>
{{#OP}}<a href="{{PostURL}}">[Reply]</a>{{/OP}} <span class="tripcode">{{{Pubkey}}}</span> <time datetime="{{DateRFC}}">{{Date}}</time>
<a href="{{PostURL}}" class="postnol">No.</a><a class="postno" onclick="nntpchan_backlink('{{ShortHash}}');" title="{{MessageID}}">{{ShortHash}}</a>
{{#OP}}<a href="{{PostURL}}">[Reply]</a>{{/OP}}
<span class="tripcode">{{{Pubkey}}}</span>
</legend> </legend>
{{#Attachments}} {{#Attachments}}
<figure> <figure>
@ -22,7 +25,7 @@
</figcaption> </figcaption>
</figure> </figure>
{{/Attachments}} {{/Attachments}}
<label class="post_body"> <div class="post_body">
{{{RenderBody}}} {{{RenderBody}}}
</label> </div>
</div> </div>

View File

@ -30,8 +30,8 @@
{{{OP.Truncate.RenderPost}}} {{{OP.Truncate.RenderPost}}}
{{#Truncate.Replies}} {{#Truncate.Replies}}
{{{Truncate.RenderPost}}} {{{Truncate.RenderPost}}}
<br />
{{/Truncate.Replies}} {{/Truncate.Replies}}
<hr />
</div> </div>
{{/threads}} {{/threads}}
</div> </div>