diff --git a/inc/config.php b/inc/config.php index 5396dd2f..f8a9debb 100644 --- a/inc/config.php +++ b/inc/config.php @@ -198,6 +198,9 @@ // of the strong anonymity associated with it. $config['dnsbl'][] = array('tor.dnsbl.sectoor.de', 1); + // Replacement for sectoor.de + // $config['dnsbl'][] = 'torexit.dan.me.uk'; + // http://www.sorbs.net/using.shtml // $config['dnsbl'][] = array('dnsbl.sorbs.net', array(2, 3, 4, 5, 6, 7, 8, 9)); diff --git a/stylesheets/minimal_lain.css b/stylesheets/minimal_lain.css new file mode 100644 index 00000000..7d6fc341 --- /dev/null +++ b/stylesheets/minimal_lain.css @@ -0,0 +1,92 @@ +html, body { + background: #1E1E1E; + margin: 0; + color: #808080; + font-family: sans-serif; +} + +.bar .top { + position: fixed; +} + +.boardlist { + padding: 10px; +} + +/* Fix boardlist background color */ +.desktop-style div.boardlist:not(.bottom) { + background: #1B1B1B; +} + +.boardlist, .boardlist a { + text-align: center; + color: white; + text-decoration: none; +} + +.boardlist .sub { + display: inline-block; +} + +header { + text-align: center; + margin-bottom: 20px; +} + +.subtitle { + color: grey; +} + +form table { + margin: auto; +} + +.blotter { + text-align: center; +} + +.thread { + width: 95%; + margin-left: auto; + margin-right: auto; +} + +.op { + margin-bottom: 2rem; +} + +/* Change unreadable op color*/ +.intro span.subject { + color: #053056; +} + +.sidearrows { + display: none; +} + +p.intro { + margin: 0.2rem; +} + +div.post.reply { + border: 1px solid white; + padding: 0.3rem; + background: #1B1B1B; +} + +a { + color: white; +} + +a:hover { + color: grey; +} + +/* remove red link in post */ +div.post.reply div.body a { + color: white; +} + +div.post.reply div.body a:hover { + color: grey; +}