Minor touchups
This commit is contained in:
parent
3de23d681b
commit
390b6b1de9
4 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
- Requires `SQLite3` (`sudo apt install php-sqlite3` on Debian)
|
||||
- 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
BIN
icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
|
@ -10,6 +10,7 @@ if(!$database) {
|
|||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<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" />
|
||||
<title>Snuffler</title>
|
||||
</head>
|
||||
|
@ -32,7 +33,7 @@ if(!$database) {
|
|||
</div>
|
||||
|
||||
<div id="centerbox">
|
||||
<div id="titlebox"><img src="favicon.ico" />Snuffler</div>
|
||||
<div id="titlebox"><img src="icon.png" alt="" />Snuffler</div>
|
||||
|
||||
<?php
|
||||
if (!$database->getAuthedUserId()) {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
body {
|
||||
font-family: Tahoma, Verdana, sans-serif;
|
||||
background-color: #000000;
|
||||
color: #ffc000;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue