-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (57 loc) · 1.87 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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>LiveBasket</title>
<meta name="description" content="A website with information about amateur basket competitions">
<link rel="canonical" href="https://alexocampos.github.io" />
<link rel="manifest" href="./site.webmanifest">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" sizes="180x180" href="res/img/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="res/img/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="res/img/favicon/favicon-16x16.png">
<link rel="icon" href="res/img/favicon/favicon.ico" />
<link rel="mask-icon" href="res/img/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<style>
body {
background-color: #469333;
color: white;
text-align: center;
font-size: large;
}
.frame {
height: 160px;
width: 160px;
display: inline-block;
vertical-align: middle;
}
img {
max-height: 35%;
max-width: 35%;
width: auto;
height: auto;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
}
@media only screen and (max-width: 720px) {
img {
max-height: 80%;
max-width: 80%;
}
}
</style>
</head>
<body>
<div class=frame>
<span></span>
<img src="res/img/livebasket.svg" alt="livebasket" />
</div>
<noscript>To use LiveBasket, please enable JavaScript</noscript>
</body>
</html>