58 lines
1.7 KiB
CSS
58 lines
1.7 KiB
CSS
#boardNavDesktopFoot a,
|
|
#header-bar a,
|
|
.deleteform::before,
|
|
.field,
|
|
.hide-navigation-decorations .pages a,
|
|
.selectrice,
|
|
body,
|
|
button,
|
|
input,
|
|
textarea {
|
|
font-size: #{parseInt _conf["Font Size"], 10}px;
|
|
}
|
|
#boardTitle,
|
|
.boardTitle a {
|
|
font-size: #{parseInt(_conf["Font Size"], 10) + 10}px;
|
|
}
|
|
.boardSubtitle,
|
|
.boardSubtitle a {
|
|
font-size: #{parseInt(_conf["Font Size"], 10) - 1}px;
|
|
}
|
|
body,
|
|
button,
|
|
input,
|
|
textarea {
|
|
font-family: #{_conf["Font"]};
|
|
}
|
|
body {
|
|
padding: 0 #{parseInt(_conf["Right Thread Padding"], 10) + editSpace["right"]}px 0 #{parseInt(_conf["Left Thread Padding"], 10) + editSpace["left"]}px;
|
|
}
|
|
.board > .thread {
|
|
margin: #{parseInt _conf["Top Thread Padding"], 10}px 0 #{parseInt _conf["Bottom Thread Padding"], 10}px 0;
|
|
}
|
|
.post,
|
|
.summary {
|
|
margin-bottom: #{Conf["Post Spacing"]}px;
|
|
}
|
|
.thread > .threadContainer:last-of-type {
|
|
margin-bottom: -#{Conf["Post Spacing"]}px;
|
|
}
|
|
.thread > .replyContainer > .reply.post {
|
|
border-width: #{if _conf['Post Spacing'] is "0" then "1px 1px 0 1px" else '1px'};
|
|
}
|
|
.postMessage {
|
|
margin: #{_conf['Vertical Post Padding']}px #{_conf['Horizontal Post Padding']}px;
|
|
}
|
|
:root:not(fourchan-ss-navigation):not(.pagination-on-side) .pagelist,
|
|
:root:not(fourchan-ss-navigation) #header-bar {
|
|
margin-left: #{parseInt(_conf["Left Thread Padding"], 10) + editSpace["right"]}px;
|
|
margin-right: #{parseInt(_conf["Right Thread Padding"], 10) + editSpace["left"]}px;
|
|
}
|
|
/* Emoji */
|
|
a.useremail:last-of-type::before {
|
|
margin-right: #{parseInt _conf['Emoji Spacing']}px;
|
|
}
|
|
a.useremail:last-of-type::after {
|
|
margin-left: #{parseInt _conf['Emoji Spacing']}px;
|
|
}
|
|
#{unless _conf["Emoji"] is "disable" then Emoji.css _conf["Emoji Position"] else ""} |