diff options
| -rw-r--r-- | bucky/app/site.js | 8 | ||||
| -rw-r--r-- | public/assets/css/bucky.css | 5 |
2 files changed, 11 insertions, 2 deletions
diff --git a/bucky/app/site.js b/bucky/app/site.js index de42155..2fe1bcc 100644 --- a/bucky/app/site.js +++ b/bucky/app/site.js @@ -83,8 +83,12 @@ site.init = function () { server = http.createServer(app).listen(process.env.PORT || 5000, function () { console.log( - "Bucky listening at http://" + process.env.HOST_NAME + ":%s", - server.address().port, + "\n", + "> Bucky listening at http://" + + process.env.HOST_NAME + + ":" + + server.address().port, + "\n", ); }); diff --git a/public/assets/css/bucky.css b/public/assets/css/bucky.css index 10f5059..e084a5f 100644 --- a/public/assets/css/bucky.css +++ b/public/assets/css/bucky.css @@ -28,6 +28,11 @@ body.black { background: #211; color: #eee; } +@media (prefers-color-scheme: dark) { + .profile_meta td { + color: #eee !important; + } +} small { font-size: 10px; |
