This repository has been archived by the owner on Jun 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
106 lines (97 loc) · 2.94 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Zimon</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css"
integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B" crossorigin="anonymous">
<link rel="stylesheet" media="screen" href="https://fontlibrary.org/face/segment7" type="text/css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<ul class="lightrope invisible">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<div class="d-flex flex-column flex-md-row align-items-center p-1 px-md-4 mb-3 bg-white border-bottom box-shadow">
<h1 class="my-0 p-2 mr-md-auto"><img src="assets/zimon-hat.png" alt="Zimon hat" height="40" class="align-middle"/>
ZIMON
</h1>
<span class="p-2 mb-0 h1" id="clock"> <!-- UHRZEIT --></span>
</div>
<div class="container">
<div class="row h3">
<div class="col-4 my-0" id="coffee-stats">
<ul class="my-0 px-0"></ul>
</div>
<div class="col-4 text-center pb-3">
<div class="h3 my-0" id="weather"></div>
<div id="coffee">
<img src='assets/coffee.png' alt="Coffee bean"/>
<img src='assets/coffee.png' alt="Coffee bean"/>
<img src='assets/coffee.png' alt="Coffee bean"/>
<img src='assets/coffee.png' alt="Coffee bean"/>
<img src='assets/coffee.png' alt="Coffee bean"/>
<img src='assets/coffee.png' alt="Coffee bean"/>
</div>
</div>
<div class="col-4 text-right my-0" id="coffee-km"></div>
</div>
<div class="row mb-3">
<div class="col-8 offset-2 text-center mb-3" id="quotes">
<p class="h5 font-weight-light" id="catfact"></p>
<p class="h3 font-weight-light my-0" id="quote">Das ist ein Zitat, dass ein Zitat darstellen soll.</p>
</div>
<div class="col-2" id="catimage"></div>
</div>
<p class="text-dark h4 pb-2">
<span id="timer"> <!-- TIMER --></span>
</p>
<div class="row" id="zivis">
<!-- ZIVIS -->
</div>
<div class="row mr-0 pt-3" id="menu">
<!-- MENU -->
</div>
</div>
<div id="listen" class="overlay">
<nav>
<ul>
<li>
<p>Hey! Listen!</p>
</li>
</ul>
</nav>
</div>
<script>
window.$ = window.jQuery = require('jquery');
require('popper.js');
require('bootstrap');
require('./window.js');
</script>
</body>
</html>