Minor touchups

This commit is contained in:
Jarkko Toivanen 2024-09-28 20:00:45 +03:00
parent 3de23d681b
commit 390b6b1de9
Signed by: jt
GPG key ID: 9151B109B73ECAD5
4 changed files with 4 additions and 2 deletions

View file

@ -1,4 +1,4 @@
- Requires `SQLite3` (`sudo apt install php-sqlite3` on Debian) - Requires `SQLite3` (`sudo apt install php-sqlite3` on Debian)
- API requires mod_rewrite (`sudo a2enmod rewrite`) and configuring `AllowOverride all` for .htaccess - API requires mod_rewrite (`sudo a2enmod rewrite`) and configuring `AllowOverride all` for .htaccess
The icon is from https://www.flaticon.com/authors/smashicons The icon is from https://www.flaticon.com/free-icon/hedgehog_10807489

BIN
icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View file

@ -10,6 +10,7 @@ if(!$database) {
<head> <head>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="stylesheet" href="style.css" /> <link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="icon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Snuffler</title> <title>Snuffler</title>
</head> </head>
@ -32,7 +33,7 @@ if(!$database) {
</div> </div>
<div id="centerbox"> <div id="centerbox">
<div id="titlebox"><img src="favicon.ico" />Snuffler</div> <div id="titlebox"><img src="icon.png" alt="" />Snuffler</div>
<?php <?php
if (!$database->getAuthedUserId()) { if (!$database->getAuthedUserId()) {

View file

@ -1,4 +1,5 @@
body { body {
font-family: Tahoma, Verdana, sans-serif;
background-color: #000000; background-color: #000000;
color: #ffc000; color: #ffc000;
} }