-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
122 lines (122 loc) · 4.83 KB
/
index.html
File metadata and controls
122 lines (122 loc) · 4.83 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="es-MX">
<head>
<meta charset="utf-8"/>
<base href="/"/>
<!-- Primary Meta Tags -->
<title>ALX Developer 👨🏽💻🎧</title>
<meta name="description" content="Desarrollo y optimización de sitios web a la medida. Soy Desarrollador Web, aficionado con Angular, Javascript y Nodejs."/>
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://alx-developer.herokuapp.com/"/>
<meta property="og:title" content="ALX Developer"/>
<meta property="og:description" content="Desarrollo y optimización de sitios web a la medida. Soy Desarrollador Web, aficionado con Angular, Javascript y Nodejs."/>
<meta property="og:image" content="https://alx-developer.herokuapp.com/assets/vectors/logo.svg"/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image"/>
<meta property="twitter:url" content="https://alx-developer.herokuapp.com/"/>
<meta property="twitter:title" content="ALX Developer"/>
<meta property="twitter:description" content="Desarrollo y optimización de sitios web a la medida. Soy Desarrollador Web, aficionado con Angular, Javascript y Nodejs."/>
<meta property="twitter:image" content="https://alx-developer.herokuapp.com/assets/vectors/logo.svg"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="icon" type="image/x-icon" href="favicon.ico"/>
<link rel="apple-touch-icon" sizes="180x180" href="https://alx-developer.herokuapp.com/assets/icons/apple-touch-icon.png"/>
<link rel="icon" type="image/png" sizes="32x32" href="https://alx-developer.herokuapp.com/assets/icons/favicon-32x32.png"/>
<link rel="icon" type="image/png" sizes="16x16" href="https://alx-developer.herokuapp.com/assets/icons/favicon-16x16.png"/>
<link rel="manifest" href="manifest.json"/>
<link rel="mask-icon" href="https://alx-developer.herokuapp.com/assets/icons/safari-pinned-tab.svg" color="#212121"/>
<meta name="msapplication-TileColor" content="#da532c"/>
<meta name="theme-color" content="#212121"/>
<link rel="stylesheet" href="https://unpkg.com/emoji.css/dist/emoji.min.css"/>
<style>
.splash {
position: absolute;
width: 100vw;
height: 100vh;
z-index: 1000;
background-color: var(--background-color);
}
.loader {
position: absolute !important;
top: calc(50% - 30px);
left: calc(50% - 30px);
}
.loader,
.loader:after {
border-radius: 50%;
width: 60px;
height: 60px;
}
.loader {
margin: auto;
font-size: 10px;
position: relative;
text-indent: -9999em;
border-top: 6px solid rgba(255, 255, 255, 0.2);
border-right: 6px solid rgba(255, 255, 255, 0.2);
border-bottom: 6px solid rgba(255, 255, 255, 0.2);
border-left: 6px solid var(--primary-color);
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation: load 1.1s infinite linear;
animation: load 1.1s infinite linear;
}
@-webkit-keyframes load {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes load {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes fade {
0% {
opacity: 1;
display: initial;
}
100% {
opacity: 0;
display: none;
}
}
.fade {
animation: fade 600ms normal linear;
}
</style>
<link rel="stylesheet" href="styles.4afd1709f51a78449089.css"></head>
<body>
<div class="splash" id="splash">
<div class="loader"></div>
</div>
<alx-root> </alx-root>
<script>
setTimeout(() => {
document.getElementById('splash').classList.add('fade');
setTimeout(() => (document.getElementById('splash').style.display = 'none'), 500);
}, 800);
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async="" src="https://www.googletagmanager.com/gtag/js?id=UA-106386058-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-106386058-1');
</script>
<script src="runtime.b35e325c5da11a658e8d.js" defer></script><script src="polyfills.38c23cbaf5bfff9fb4ac.js" defer></script><script src="main.993d700986c904b2785e.js" defer></script></body>
</html>