commit a21b70ee6787d2e12eeb2d20501544c0b9dfc4b3
parent 819736d277878fb5f67a662bab383cccff300b94
Author: Hunter
Date:   Wed, 15 Oct 2025 17:33:19 -0400

use dashed lines; add favicon

Diffstat:
Mindex.html | 9+++++----
1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/index.html b/index.html @@ -4,6 +4,7 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>memori</title> + <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>✂️</text></svg>"> <style> * { margin: 0; @@ -44,19 +45,19 @@ width: 4mm; height: 4mm; box-sizing: border-box; - border-right: 1px solid #d0d0d0; - border-bottom: 1px solid #d0d0d0; + border-right: 1px dashed #d0d0d0; + border-bottom: 1px dashed #d0d0d0; margin: 0; padding: 0; display: block; } .grid-cell:nth-child(-n+50) { - border-top: 1px solid #d0d0d0; + border-top: 1px dashed #d0d0d0; } .grid-cell:nth-child(50n+1) { - border-left: 1px solid #d0d0d0; + border-left: 1px dashed #d0d0d0; } .image-container {