mirror of
https://github.com/Eggbertx/gochan.git
synced 2025-08-27 11:26:22 -07:00
28 lines
436 B
SCSS
28 lines
436 B
SCSS
@import 'colors';
|
|
|
|
%formstyle {
|
|
background: $inputbg!important;
|
|
border: 1px double $inputborder;
|
|
color: $color;
|
|
}
|
|
|
|
|
|
div.reply, th.postblock {
|
|
background: #282A2E;
|
|
border: 1px solid #117743;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
table#postbox-static, div#report-delbox {
|
|
input, select, textarea {
|
|
border-radius: 5px;
|
|
@extend %formstyle;
|
|
}
|
|
button, input[type=submit] {
|
|
background:#16171A;
|
|
}
|
|
}
|
|
|
|
select#changepage {
|
|
@extend %formstyle;
|
|
}
|