-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
131 lines (122 loc) · 3.63 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, height=device-height, initial-scale=1"
/>
<title>ATLAS</title>
<style>
body {
height: 100%;
width: 100%;
margin: 0;
position: fixed;
overflow: hidden;
font-family: "Raleway";
}
.page {
background: linear-gradient(90deg, #2f374e, #583f52);
height: 100%;
}
.content-ct {
height: calc(100% - 120px);
display: flex;
justify-content: center;
align-items: center;
}
.project-link-ct {
margin-left: 60px;
width: 230px;
}
.project-link {
color: #fff;
text-decoration: none;
display: block;
font-size: 16px;
font-weight: 500;
margin: 16px 0 0;
}
.offline-notice {
font-size: 11px;
font-weight: 400;
}
.footer {
background: rgba(0, 0, 0, 0.2);
height: 120px;
bottom: 0;
left: 0;
right: 0;
position: absolute;
}
.footer-text {
text-align: center;
font-size: 12px;
color: #fff;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
width: 500px;
height: 32px;
font-weight: 500;
}
.footer-link {
color: #fff;
line-height: 20px;
font-weight: 400;
}
</style>
<link
href="https://fonts.googleapis.com/css?family=Raleway:400,500"
rel="stylesheet"
/>
</head>
<body>
<div class="page">
<div class="content-ct">
<img
src="data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2023.26%2022.31%22%20height%3D%2270%22%20width%3D%2270%22%3E%3Cg%3E%3Cpath%20d%3D%22M10.39%2C0%2C0%2C22.31H20.41ZM4.73%2C19.44l1-2.22%2C1.32-3L10.33%2C7.1l3.11%2C7.14%2C1.29%2C3%2C1%2C2.22Z%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3Cpath%20d%3D%22M19.55%2C2.45a1.29%2C1.29%2C0%2C1%2C0%2C1.29%2C1.29%2C1.29%2C1.29%2C0%2C0%2C0-1.29-1.29m0%2C5a3.71%2C3.71%2C0%2C1%2C1%2C3.71-3.71%2C3.71%2C3.71%2C0%2C0%2C1-3.71%2C3.71%22%20fill%3D%22%23fff%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E"
/>
<div class="project-link-ct">
<a class="project-link" href="https://patient-level.atlas-build.com">
Patient level deployment
</a>
<a class="project-link" href="https://malaria.atlas-build.com">
Malaria deployment
</a>
<a class="project-link" href="https://next.atlas-build.com">
Current development
</a>
<a class="project-link" href="https://lyme.atlas-build.com">
Lyme deployment
<div class="offline-notice">
(currently offline for additional development)
</div>
</a>
<a class="project-link" href="https://cold-spots.atlas-build.com">
Cold spots prototype
<div class="offline-notice">
(currently offline for additional development)
</div>
</a>
</div>
</div>
<div class="footer">
<div class="footer-text">
For information, please contact the Arnhold Institute for Global
Health ATLAS team.:
<a
class="footer-link"
href="https://icahn.mssm.edu/research/arnhold/data-science"
>
https://icahn.mssm.edu/research/arnhold/data-science</a
>
</div>
</div>
</div>
</body>
</html>