-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (73 loc) · 1.51 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<html>
<head>
<!--Import Google Icon Font-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>d3 Clock</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
background-color: #eee;
font-family: "Verdana";
font-size: 12px;
}
.container {
margin: 20px auto;
width: 1100px;
height: 700px;
background-color: #fff;
display: grid;
grid-template-columns: 320px 320px 320px;
grid-row: auto auto;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.container > .box {
padding: 20px;
display: flex;
align-items: center;
/* justify-content: center; */
}
h1, h2, h3 {
text-align: center;
}
.container > .box > h3 {
color: red;
}
</style>
</head>
<body>
<h1>D3 Clock</h1>
<div class="container">
<div class="box">
<h3>SBB </h3>
<div id="sbb"></div>
</div>
<div class="box">
<h3>Braun </h3>
<div id="braun"></div>
</div>
<div class="box">
<h3>Classic</h3>
<div id="classic"></div>
</div>
<div class="box">
<h3>Modern</h3>
<div id="modern"></div>
</div>
<div class="box">
<h3>3x speed</h3>
<div id="sim"></div>
</div>
<div class="box">
<h3>Offset +8h</h3>
<div id="tz"></div>
</div>
</div>
<script src="./src/app.ts"></script>
</body>
</html>