first build

This commit is contained in:
Joakim Svensson
2025-05-02 11:15:06 +02:00
commit e0ba4c504e
8 changed files with 217 additions and 0 deletions

16
extra.css Normal file
View File

@@ -0,0 +1,16 @@
.ascii-wrapper {
width: 100%;
overflow-x: auto;
-webkit-overflow-scrolling: touch; /* för smooth scroll på mobil */
}
.ascii-wrapper pre {
display: table; /* Gör att den bara tar så mycket plats som behövs */
max-width: 50%; /* Begränsa till förälderns bredd */
margin: 0 auto; /* Centrerar innehållet */
}
.ascii-wrapper code {
white-space: pre; /* Bevara mellanrum och radbrytningar */
font-size: 1em; /* Behåll läsbar storlek */
}