-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (58 loc) · 1.45 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Daily-Dashboard</title>
<style>
body {
margin: 0;
}
#time {
position: absolute;
top: 0px;
left: 0px;
width: 500px;
height: 230px;
background-color: rgba(217, 217, 217, 0.2);
border-bottom-right-radius: 45px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
#uhrzeit {
font-size: 96px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #DBD9D9;
}
#datum {
font-size: 64px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #DBD9D9;
}
#sunset {
position: absolute;
top: 0px;
right: 0px;
width: 800px;
height: 100px;
background-color: rgba(217, 217, 217, 0.2);
border-bottom-left-radius: 25px;
display: flex;
justify-content: space-evenly;
align-items: center;
font-size: 40px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: #DBD9D9;
}
</style>
</head>
<body>
<div id="time">
<div id="uhrzeit"></div>
<div id="datum"></div>
</div>
<!-- <div id="sunset"></div> -->
<script type="module" src="/main.ts"></script>
</body>
</html>