no more margin

This commit is contained in:
Kumkwats 2022-10-17 17:11:50 +02:00
parent e2b8989ec3
commit 095795a1ee
6 changed files with 6 additions and 16 deletions

View File

@ -2,7 +2,7 @@
import os
import json
apps: list[str] = json.load(open('apps.json'))['apps']
apps: 'list[str]' = json.load(open('apps.json'))['apps']
print(len(apps), 'apps:', apps)

View File

@ -2,7 +2,7 @@
import os
import json
apps: list[str] = json.load(open('apps.json'))['apps']
apps: 'list[str]' = json.load(open('apps.json'))['apps']
print(len(apps), 'apps:', apps)

View File

@ -2,7 +2,7 @@
import os
import json
apps: list[str] = json.load(open('apps.json'))['apps']
apps: 'list[str]' = json.load(open('apps.json'))['apps']
print(len(apps), 'apps:', apps)

View File

@ -8,7 +8,7 @@ body {
body {
color: #333;
margin: 0;
padding: 8px;
/* padding: 0; */
box-sizing: border-box;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

View File

@ -10,16 +10,7 @@
<style>
main {
text-align: center;
padding: 1em;
max-width: 240px;
margin: 0 auto;
}
h1 {
color: #ff3e00;
text-transform: uppercase;
font-size: 4em;
font-weight: 100;
}
@media (min-width: 640px) {

View File

@ -70,12 +70,11 @@
overflow-x: hidden;
overflow-y: hidden;
padding: 0;
margin: 0;
}
body {
position: relative;
margin: 0;
position: absolute;
width: 100%;
height: 100%;
}