-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
59 lines (54 loc) · 2.31 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="An open-source web interface for running worldwide energy system planning studies">
<meta name="author" content="Maximilian Parzen">
<title>Tauritron</title>
<!-- Custom styles for this template -->
<style>
h1.flex-item {
/* margin:0px; */
animation:type 3s steps(23);
overflow: hidden;
white-space: nowrap;
font-family:consolas;
border-right: 3px solid white;
width: 20ch;
}
@keyframes type {
0% {
width:0ch;
}
100% {
width: 20ch;
}
}
</style>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css"
integrity="sha256-FMvZuGapsJLjouA6k7Eo2lusoAX9i0ShlWFG6qt7SLc=" crossorigin="anonymous">
<link href="css/particles.css" rel="stylesheet"/>
<link href="css/page.css" rel="stylesheet"/>
</head>
<body>
<div id="tsparticles"></div>
<div class="flex-container">
<div class="row">
<h1 class="flex-item">UNDER DEVELOPMENT</h1>
<!-- <h2 class="flex-item">Der Mensch im Zentrum des Energiewandels</h2> -->
<div class="social">
<a href="https://github.com/pypsa-meets-earth/tauritron"><i class="fab fa-2x fa-github"></i></a>
<a href="https://discord.gg/AnuJBk23FU"><i class="fab fa-2x fa-discord"></i></a>
<!-- <a href="https://twitter.com/pypsameetsearth"><i class="fab fa-2x fa-twitter"></i></a>
<a href="https://www.linkedin.com/company/pypsa-meets-earth/"><i class="fab fa-2x fa-linkedin-in"></i></a> -->
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/js/all.min.js"
integrity="sha256-uNYoXefWRqv+PsIF/OflNmwtKM4lStn9yrz2gVl6ymo=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/tsparticles.min.js"
integrity="sha256-Wcr5q//r5yGozjRl+ToXruCoy75vgiApkKsV30aCns8=" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/particles.js"></script>
</body>
</html>