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 os
import json 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) print(len(apps), 'apps:', apps)

View File

@ -2,7 +2,7 @@
import os import os
import json 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) print(len(apps), 'apps:', apps)

View File

@ -2,7 +2,7 @@
import os import os
import json 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) print(len(apps), 'apps:', apps)

View File

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

View File

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

View File

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