add metadata to index html file
This commit is contained in:
parent
d3ed57227e
commit
c74395548b
@ -5,6 +5,7 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<title>Watterblock</title>
|
<title>Watterblock</title>
|
||||||
|
|
||||||
<link rel="stylesheet" href="/vendored/normalize-8.0.1.css">
|
<link rel="stylesheet" href="/vendored/normalize-8.0.1.css">
|
||||||
<link rel="stylesheet" href="/style.css">
|
<link rel="stylesheet" href="/style.css">
|
||||||
<link rel="stylesheet" href="/vendored/material-icons.css" />
|
<link rel="stylesheet" href="/vendored/material-icons.css" />
|
||||||
@ -15,6 +16,14 @@
|
|||||||
</script>
|
</script>
|
||||||
<script src="/vendored/mithril-2.3.8.js" defer></script>
|
<script src="/vendored/mithril-2.3.8.js" defer></script>
|
||||||
<script src="/index.js" type="module"></script>
|
<script src="/index.js" type="module"></script>
|
||||||
|
|
||||||
|
<meta name="application-name" content="Watterblock">
|
||||||
|
<meta name="author" content="Adrian Wannenmacher">
|
||||||
|
<meta name="description" lang="de-AT"
|
||||||
|
content="Einfach zu verwendender Watterblock, der die Daten lokal im Browser speichert.">
|
||||||
|
<meta name="keywords" content="Watten,Block,Spiel,Mitschrift">
|
||||||
|
<meta name="theme-color" content="lch(86 84 71)" media="(prefers-color-scheme: dark)">
|
||||||
|
<meta name="theme-color" content="lch(14 77 304)" media="(prefers-color-scheme: light)">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class="wb-layout">
|
<body class="wb-layout">
|
||||||
|
|||||||
@ -30,6 +30,7 @@ html {
|
|||||||
/* regular main colors */
|
/* regular main colors */
|
||||||
--color-regular-text: lch(100 0 0);
|
--color-regular-text: lch(100 0 0);
|
||||||
--color-regular-background: lch(10 0 0);
|
--color-regular-background: lch(10 0 0);
|
||||||
|
/* also in index.html as meta theme-color, update there too */
|
||||||
--color-regular-accent: lch(86 84 71);
|
--color-regular-accent: lch(86 84 71);
|
||||||
|
|
||||||
/* regular derived colors */
|
/* regular derived colors */
|
||||||
@ -59,6 +60,7 @@ html {
|
|||||||
/* regular main colors */
|
/* regular main colors */
|
||||||
--color-regular-text: lch(0 0 0);
|
--color-regular-text: lch(0 0 0);
|
||||||
--color-regular-background: lch(100 0 0);
|
--color-regular-background: lch(100 0 0);
|
||||||
|
/* also in index.html as meta theme-color, update there too */
|
||||||
--color-regular-accent: lch(14 77 304);
|
--color-regular-accent: lch(14 77 304);
|
||||||
|
|
||||||
/* regular derived colors */
|
/* regular derived colors */
|
||||||
@ -204,4 +206,4 @@ h6 {
|
|||||||
._sticky-bottom {
|
._sticky-bottom {
|
||||||
position: sticky;
|
position: sticky;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user