no more rounded rectangles, stupid boarders or shadows
This commit is contained in:
parent
41d3cb467b
commit
0ed2bad9f1
@ -17,10 +17,6 @@ section {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
|
||||||
max-width: 1110px;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.frontend , .subject {
|
.frontend , .subject {
|
||||||
color: #928BFF;
|
color: #928BFF;
|
||||||
@ -150,14 +146,12 @@ input, textarea {
|
|||||||
color: whitesmoke;
|
color: whitesmoke;
|
||||||
background: #2d2d2d;
|
background: #2d2d2d;
|
||||||
border-color: #4D28CA;
|
border-color: #4D28CA;
|
||||||
border-radius: 3px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.reply {
|
.reply {
|
||||||
margin-left: 1.8em;
|
margin-left: 1.8em;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
border-radius: 3px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.frontend {
|
.frontend {
|
||||||
@ -242,9 +236,7 @@ input, textarea {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.reply, .ukko_thread_header , pre {
|
.reply, .ukko_thread_header , pre {
|
||||||
padding: 7px 7px;
|
padding: 7px 7px;
|
||||||
border-radius: 5px;
|
|
||||||
box-shadow: 1px 1px 3px black;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.post_body > p {
|
.post_body > p {
|
||||||
@ -257,9 +249,14 @@ input, textarea {
|
|||||||
|
|
||||||
.post {
|
.post {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
overflow: auto;
|
||||||
width: 80%;
|
width: 80%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.origin {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
#postform_attachment {
|
#postform_attachment {
|
||||||
max-width: 330px;
|
max-width: 330px;
|
||||||
}
|
}
|
||||||
@ -283,18 +280,10 @@ figure img {
|
|||||||
max-height:128px;
|
max-height:128px;
|
||||||
max-width:100%;
|
max-width:100%;
|
||||||
}
|
}
|
||||||
fieldset {
|
|
||||||
overflow: auto;
|
|
||||||
border-radius: 5px 0px 5px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
fieldset > img {
|
|
||||||
float: right;
|
|
||||||
}
|
|
||||||
|
|
||||||
.thread {
|
.thread {
|
||||||
float: left;
|
float: left;
|
||||||
width: 90%;
|
width: 99%;
|
||||||
padding-left: 10px;
|
padding-left: 10px;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<div id="{{PostHash}}" class="{{CSSClass}}">
|
<div id="{{PostHash}}" class="{{CSSClass}}">
|
||||||
<fieldset>
|
<div class="origin">
|
||||||
{{#IsI2P}}
|
{{#IsI2P}}
|
||||||
<img src="{{Prefix}}static/i2p.png" title="post from i2p" />
|
<img src="{{Prefix}}static/i2p.png" title="post from i2p" />
|
||||||
{{/IsI2P}}
|
{{/IsI2P}}
|
||||||
@ -9,9 +9,10 @@
|
|||||||
{{#IsClearnet}}
|
{{#IsClearnet}}
|
||||||
<img src="{{Prefix}}static/clearnet.png" title="post from clearnet" />
|
<img src="{{Prefix}}static/clearnet.png" title="post from clearnet" />
|
||||||
{{/IsClearnet}}
|
{{/IsClearnet}}
|
||||||
|
</div>
|
||||||
<legend>
|
<legend>
|
||||||
<span class="subject">{{Subject}}</span> <span class="name">{{Name}}</span><time datetime="{{DateRFC}}">{{Date}}</time>
|
<span class="subject">{{Subject}}</span> <span class="name">{{Name}}</span><time datetime="{{DateRFC}}">{{Date}}</time>
|
||||||
<a href="{{PostURL}}">No.</a><a onclick="nntpchan_backlink('{{ShortHash}}');" title="{{MessageID}}">{{ShortHash}}</a>
|
<a href="{{PostURL}}" class="postno">No.</a><a onclick="nntpchan_backlink('{{ShortHash}}');" title="{{MessageID}}">{{ShortHash}}</a>
|
||||||
{{#OP}}<a href="{{PostURL}}">[Reply]</a>{{/OP}} <span class="tripcode">{{{Pubkey}}}</span><br />
|
{{#OP}}<a href="{{PostURL}}">[Reply]</a>{{/OP}} <span class="tripcode">{{{Pubkey}}}</span><br />
|
||||||
</legend>
|
</legend>
|
||||||
{{#Attachments}}
|
{{#Attachments}}
|
||||||
@ -24,5 +25,4 @@
|
|||||||
<label class="post_body">
|
<label class="post_body">
|
||||||
{{{RenderBody}}}
|
{{{RenderBody}}}
|
||||||
</label>
|
</label>
|
||||||
</fieldset>
|
|
||||||
</div>
|
</div>
|
||||||
|
Reference in New Issue
Block a user