Sapper bootstrap

This commit is contained in:
2019-07-12 09:49:03 +02:00
commit 8b6cd87f50
32 changed files with 920 additions and 0 deletions

BIN
static/favicon.png (Stored with Git LFS) Normal file

Binary file not shown.

36
static/global.css Normal file
View File

@ -0,0 +1,36 @@
body {
margin: 0;
font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
font-size: 14px;
line-height: 1.5;
color: #333;
}
h1, h2, h3, h4, h5, h6 {
margin: 0 0 0.5em 0;
font-weight: 400;
line-height: 1.2;
}
h1 {
font-size: 2em;
}
a {
color: inherit;
}
code {
font-family: menlo, inconsolata, monospace;
font-size: calc(1em - 2px);
color: #555;
background-color: #f0f0f0;
padding: 0.2em 0.4em;
border-radius: 2px;
}
@media (min-width: 400px) {
body {
font-size: 16px;
}
}

BIN
static/great-success.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
static/logo-192.png (Stored with Git LFS) Normal file

Binary file not shown.

BIN
static/logo-512.png (Stored with Git LFS) Normal file

Binary file not shown.

20
static/manifest.json Normal file
View File

@ -0,0 +1,20 @@
{
"background_color": "#ffffff",
"theme_color": "#333333",
"name": "TODO",
"short_name": "TODO",
"display": "minimal-ui",
"start_url": "/",
"icons": [
{
"src": "logo-192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "logo-512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}