-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 929 Bytes
/
index.html
File metadata and controls
42 lines (42 loc) · 929 Bytes
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
<!DOCTYPE html>
<html lang="de">
<head>
<style>
* {
margin: 0;
padding: 0;
}
.container {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100vh;
width: 100%;
}
.text-block {
font-family: Arial;
position: relative;
line-height: 1.8;
top: 40%;
left: 30%;
width: 35%;
background-color: black;
background: rgba(0, 0, 0, 0.3);
color: white;
padding: 20px;
}
</style>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ImagingSessionAnalysis</title>
</head>
<body style="background-color:black">
<div class="container">
<div class="text-block">
<a href="/MacOS/ImagingSessionAnalysis.dmg" download>
MacOS (ARM)
</a>
</div>
</div>
</body>
</html>