-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
39 lines (35 loc) · 955 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ScottPlot GitHub Website</title>
<link rel="shortcut icon" type="image/x-icon" href="https://scottplot.github.io/favicon.ico?">
<meta name="theme-color" content="#67217A" />
<style>
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
.logo {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 400px;
max-width: 60%;
}
</style>
</head>
<body style="background-color: #67217a;">
<div style="position: relative; height: 100%; width: 100%;">
<a href="https://scottplot.net">
<img class="logo" src="banner-transparent.svg" />
</a>
</div>
</body>
</html>