-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
37 lines (37 loc) · 1.14 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<!-- <link rel="shortcut icon" href="static/favicon_dark.png" type="image/x-icon"/> -->
<link rel="icon" href="static/favicon_dark.png" media="(prefers-color-scheme: light)" sizes="96x96">
<link rel="icon" href="static/favicon_light.png" media="(prefers-color-scheme: dark)" sizes="96x96">
<style>
body {
margin: 0;
padding: 0;
overflow: hidden;
background-image: url('https://media.giphy.com/media/YRcXl6VfNhCorklI0R/giphy.gif');
background-repeat: no-repeat;
background-size: cover;
}
#content {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#svg-image {
width: 300px;
height: 200px;
}
</style>
</head>
<body>
<div id="content">
<svg id="svg-image" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 200">
<image xlink:href="static/logo.svg" width="300" height="200" />
</svg>
</div>
</body>
</html>