-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
79 lines (76 loc) · 3.23 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
<!DOCTYPE html>
<html>
<head>
<title>cryptohedge</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="images/icons/favicon.ico"/>
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/perfect-scrollbar/perfect-scrollbar.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<!--===============================================================================================-->
<style>
body {
background-image: url("images/sven-scheuermeier-108248-unsplash.jpg");
background-size: cover;
}
iframe {
width: 400px;
height: 300px;
margin: auto;
display: block;
}
.navbar__menu {
display: none; }
.navbar__menu--noMob {
display: block; }
@media (min-width: 992px) {
.navbar__menu {
display: block; } }
.navbar__menu li {
margin-left: 4pt;
backface-visibility: hidden;
display: inline-block; }
@media (min-width: 992px) {
.navbar__menu li {
margin-left: 16pt; } }
.navbar__menu a {
color: #fff; }
@media (min-width: 992px) {
.navbar__menu a {
opacity: 0.75; }
.navbar__menu a:hover {
opacity: 1; }
.navbar__menu a:after {
display: block;
content: '';
border-bottom: solid 1px #fff;
transform: scaleX(0);
transition: transform 250ms ease-in-out; }
.navbar__menu a:hover:after {
transform: scaleX(1); } }
</style>
</head>
<body>
<nav class="navbar__menu">
<ul>
<li><a href="./cryptofolio">Cryptofolio</a></li>
<li><a href="./cryptohedge">Cryptohedge</a></li>
</ul>
</nav>
<h1 style="text-align:center;"><font color="White"> Today portfolio value is: {{.Value}}€</h1>
<iframe src="https://coin360.io/widget/map.html" title="Coin360.io: Cryptocurrency Market State" width="400" height="300" ></iframe>
<script>setTimeout(function() {window.location.reload();}, 60000)</script>
</body>
</html>