no more margin
This commit is contained in:
parent
e2b8989ec3
commit
095795a1ee
@ -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)
|
||||||
|
|
||||||
|
@ -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)
|
||||||
|
|
||||||
|
@ -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)
|
||||||
|
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
@ -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) {
|
||||||
|
@ -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%;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user