mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-08-19 12:36:23 -07:00
74 lines
1.1 KiB
SCSS
74 lines
1.1 KiB
SCSS
@import 'dark/colors';
|
|
|
|
body {
|
|
background: $bgcol;
|
|
font-family: $font-family;
|
|
color: $color;
|
|
font-size: 80%;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: $linkcol;
|
|
}
|
|
|
|
div#topbar {
|
|
background: $topbarbg;
|
|
border-bottom: 1px solid $color;
|
|
a {
|
|
text-shadow: black 1px 1px 1px, black -1px -1px 1px, black -1px 1px 1px, black 1px -1px 1px;
|
|
}
|
|
}
|
|
|
|
header {
|
|
color: $headercol;
|
|
}
|
|
|
|
div#content {
|
|
// input:not([type=submit]):not([type=button]),
|
|
input:not(div#qrbuttons input),
|
|
textarea, select {
|
|
background: $inputbg;
|
|
border: 1px solid $topbarbg;
|
|
color: $linkcol;
|
|
}
|
|
}
|
|
|
|
th.postblock, table.mgmt-table tr:first-of-type th {
|
|
background: $blockcol;
|
|
border: 1px solid $blockborder;
|
|
border-radius: 5px;
|
|
text-align: left;
|
|
}
|
|
|
|
// select.post-actions {
|
|
// color: $color;
|
|
// }
|
|
|
|
div.reply,
|
|
div.postprev,
|
|
div.inlinepostprev {
|
|
background: $inputbg;
|
|
border: 1px solid $replyborder;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
span.postername {
|
|
color: $headercol;
|
|
font-weight: bold;
|
|
a {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
span.tripcode {
|
|
color: $headercol;
|
|
}
|
|
|
|
span.subject {
|
|
color: $subjectcol;
|
|
}
|
|
|
|
table#pages, table#pages * {
|
|
border: none;
|
|
}
|