From 21785ffbfb9da1b59a850c78f076a855aab9d264 Mon Sep 17 00:00:00 2001 From: f0x52 <0x52@waifu.club> Date: Tue, 18 Apr 2017 18:53:14 +0200 Subject: [PATCH 1/2] minimal lain stylesheet --- stylesheets/minimal_lain.css | 73 ++++++++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 stylesheets/minimal_lain.css diff --git a/stylesheets/minimal_lain.css b/stylesheets/minimal_lain.css new file mode 100644 index 00000000..b4a494e1 --- /dev/null +++ b/stylesheets/minimal_lain.css @@ -0,0 +1,73 @@ +html, body { + background-color: #1E1E1E; + margin: 0; + color: #808080; + font-family: sans-serif; +} + +.bar .top { + position: fixed; +} + +.boardlist { + padding: 10px; +} + +.boardlist, .boardlist a { + text-align: center; + background-color: #1B1B1B; + 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; +} + +.sidearrows { + display: none; +} + +p.intro { + margin: 0.2rem; +} + +.postcontainer { + border: 1px solid white; + padding: 0.3rem; +} + +a { + color: white; +} + +a:hover { + color: grey; +} From 61635d24624191f6c17ec5702eeb2789df45eff4 Mon Sep 17 00:00:00 2001 From: Appleman1234 Date: Sat, 29 Apr 2017 09:01:27 +0900 Subject: [PATCH 2/2] Add changes by Difficile from IRC Add changes by Difficile from IRC, ensuring top bar has matching background color to the rest of the page. --- stylesheets/minimal_lain.css | 27 +++++++++++++++++++++++---- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/stylesheets/minimal_lain.css b/stylesheets/minimal_lain.css index b4a494e1..7d6fc341 100644 --- a/stylesheets/minimal_lain.css +++ b/stylesheets/minimal_lain.css @@ -1,5 +1,5 @@ html, body { - background-color: #1E1E1E; + background: #1E1E1E; margin: 0; color: #808080; font-family: sans-serif; @@ -13,9 +13,13 @@ html, body { padding: 10px; } +/* Fix boardlist background color */ +.desktop-style div.boardlist:not(.bottom) { + background: #1B1B1B; +} + .boardlist, .boardlist a { text-align: center; - background-color: #1B1B1B; color: white; text-decoration: none; } @@ -34,7 +38,7 @@ header { } form table { - margin: auto; + margin: auto; } .blotter { @@ -51,6 +55,11 @@ form table { margin-bottom: 2rem; } +/* Change unreadable op color*/ +.intro span.subject { + color: #053056; +} + .sidearrows { display: none; } @@ -59,9 +68,10 @@ p.intro { margin: 0.2rem; } -.postcontainer { +div.post.reply { border: 1px solid white; padding: 0.3rem; + background: #1B1B1B; } a { @@ -71,3 +81,12 @@ a { 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; +}