-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (40 loc) · 1.36 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>Thorsten Roggendorf</title>
<meta name="description" content="Thorsten Roggendorf's Application">
<link rel="icon" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4QQDDS0TWrXjywAAABl0RVh0Q29tbWVudABDcmVhdGVkIHdpdGggR0lNUFeBDhcAAACTSURBVDjLY2RgYPjPQBgw4pJgYqAy+E+ki6jnApob8B8N/2VgYHjMwMAwm4GBQZiYMPiPB68ixQCYayUZGBgaoWLvSTUABgSgYk9JDUQOBgYGLQYGhplQ/jpKwmAHAwMDHykJCxl/ZWBgkCMnZXIyMDBchPIPMzAwMJOTtFUZGBg+QsWayc0bIUiJyoHczDURFpUAwvtCJPMwWpUAAAAASUVORK5CYII=">
<script type="module" src="src/appl-app.js"></script>
<style>
:root {
--primary-color : #704214;
--secondary-color: #f7f4ed;
--z1-shadow :
0 2px 2px 0 rgba(0, 0, 0, 0.14),
0 1px 5px 0 rgba(0, 0, 0, 0.12),
0 3px 1px -2px rgba(0, 0, 0, 0.2);
--z2-shadow :
0 3px 4px 0 rgba(0, 0, 0, 0.14),
0 1px 8px 0 rgba(0, 0, 0, 0.12),
0 3px 3px -2px rgba(0, 0, 0, 0.2);
}
body {
margin: 0;
font-family: 'Roboto', 'Noto', sans-serif;
line-height: 1.5;
min-height: 100vh;
background-color: #eeeeee;
}
h1 {
margin: 0.5em 0 0.1em 0;
color: #212121;
font-size: 22px;
}
</style>
</head>
<body>
<appl-app></appl-app>
</body>
</html>