-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (76 loc) · 1.96 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
<!DOCTYPE html>
<html>
<head>
<title>kubespaces</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="https://raw.githubusercontent.com/kubespace-io/.github/main/resources/images/logo-black.png" type="image/png">
<style>
html, body {
height: 80%;
margin: 0;
padding: 0;
}
#page-content {
min-height: calc(100vh - 140px);
}
* {
box-sizing: border-box;
}
body {
background-color: #ffffff;
font-family: 'Montserrat', sans-serif;
}
#logo {
display: block;
margin: 60px auto 20px;
width: 500px;
max-width: 100%;
height: auto;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
background-color: #ffffff;
text-align: center;
padding: 20px;
}
footer a {
color: #000000;
margin: 10px;
}
@media (max-width: 768px) {
#page-content {
grid-template-columns: 1fr;
}
#logo {
margin-top: 30px;
}
footer {
font-size: 14px;
padding: 10px;
}
footer a {
margin: 5px;
}
}
@media (min-width: 768px) {
#page-content {
grid-template-columns: 1fr 1fr;
}
}
</style>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
</head>
<body>
<div id="page-content">
<a href="http://kubespace.io/">
<img id="logo" src="https://raw.githubusercontent.com/kubespace-io/.github/main/resources/images/kubespace.io-logo-black.png" alt="Logo de la página">
</a>
</div>
<footer>
<a href="https://github.com/kubespace-io" target="_blank">GitHub</a>
<a href="mailto:info@kubespaces.com" target="_blank">info@kubespaces.com</a>
</footer>
</body>
</html>