-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (58 loc) · 1.31 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Inmmerce</title>
<style>
* {
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
}
html {
height: 100%;
}
body {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
background: black;
}
.container {
max-width: 1024px;
}
img {
max-width: 100%;
}
.mini-logo {
display: none;
}
@media (min-width: 320px) and (max-width: 768px) {
.full-logo {
display: none;
}
.mini-logo {
display: block;
}
}
</style>
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="icon" type="image/vnd.microsoft.icon" href="favicon.ico" />
</head>
<body>
<div class="container">
<img
src="image/inmmerce-full-logo.svg"
class="full-logo"
alt="Inmmerce"
/>
<img src="image/inmmerce-icon.svg" class="mini-logo" alt="Inmmerce" />
</div>
</body>
</html>