186 lines
4.9 KiB
HTML
186 lines
4.9 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="es">
|
||
|
|
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8"/>
|
||
|
|
<title>Code-Epic | Sandra Server</title>
|
||
|
|
<base href="."/>
|
||
|
|
<meta charset="utf-8"/>
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||
|
|
<meta name="description" content="En informática un Bus de Servicio Empresarial es un modelo de arquitectura de software que gestiona la comunicación entre servicios web. Es un componente fundamental de la Arquitectura Orientada a Servicios."/>
|
||
|
|
<meta name="keywords" content="En informática un Bus de Servicio Empresarial es un modelo de arquitectura de software que gestiona la comunicación entre servicios web. Es un componente fundamental de la Arquitectura Orientada a Servicios."/>
|
||
|
|
<meta name="author" content="CODE-EPIC TECHNOLOGIES"/>
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
|
||
|
|
|
||
|
|
|
||
|
|
<link rel="icon" type="image/x-png" href="assets/images/logo/logo.png"/>
|
||
|
|
<!-- <link
|
||
|
|
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,400;1,500;1,600"
|
||
|
|
rel="stylesheet"
|
||
|
|
/> -->
|
||
|
|
<!-- <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBgjNW0WA93qphgZW-joXVR6VC3IiYFjfo"></script> -->
|
||
|
|
<!-- Vuexy loading Screen CSS -->
|
||
|
|
<style type="text/css">
|
||
|
|
#loading-bg {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
background: #fff;
|
||
|
|
display: block;
|
||
|
|
position: absolute;
|
||
|
|
z-index: 99999;
|
||
|
|
pointer-events: none;
|
||
|
|
}
|
||
|
|
|
||
|
|
.loading-logo {
|
||
|
|
position: absolute;
|
||
|
|
left: calc(50% - 125px);
|
||
|
|
top: 35%;
|
||
|
|
}
|
||
|
|
|
||
|
|
.loading {
|
||
|
|
position: absolute;
|
||
|
|
left: calc(50% - 50px);
|
||
|
|
top: 50%;
|
||
|
|
width: 53px;
|
||
|
|
height: 53px;
|
||
|
|
border-radius: 50%;
|
||
|
|
-webkit-box-sizing: border-box;
|
||
|
|
box-sizing: border-box;
|
||
|
|
border: 3px solid transparent;
|
||
|
|
}
|
||
|
|
|
||
|
|
.loading .effect-1,
|
||
|
|
.loading .effect-2 {
|
||
|
|
position: absolute;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
border: 3px solid transparent;
|
||
|
|
border-left: 3px solid rgb(255, 149, 0);
|
||
|
|
border-radius: 50%;
|
||
|
|
-webkit-box-sizing: border-box;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.loading .effect-1 {
|
||
|
|
animation: rotate 1s ease infinite;
|
||
|
|
}
|
||
|
|
|
||
|
|
.loading .effect-2 {
|
||
|
|
animation: rotateOpacity 1s ease infinite 0.1s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.loading .effect-3 {
|
||
|
|
position: absolute;
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
border: 3px solid transparent;
|
||
|
|
border-left: 3px solid rgb(255, 149, 0);
|
||
|
|
-webkit-animation: rotateOpacity 1s ease infinite 0.2s;
|
||
|
|
animation: rotateOpacity 1s ease infinite 0.2s;
|
||
|
|
border-radius: 50%;
|
||
|
|
-webkit-box-sizing: border-box;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
|
||
|
|
.loading .effects {
|
||
|
|
transition: all 0.3s ease;
|
||
|
|
}
|
||
|
|
|
||
|
|
@keyframes rotate {
|
||
|
|
0% {
|
||
|
|
-webkit-transform: rotate(0deg);
|
||
|
|
transform: rotate(0deg);
|
||
|
|
}
|
||
|
|
|
||
|
|
100% {
|
||
|
|
-webkit-transform: rotate(1turn);
|
||
|
|
transform: rotate(1turn);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
@keyframes rotateOpacity {
|
||
|
|
0% {
|
||
|
|
-webkit-transform: rotate(0deg);
|
||
|
|
transform: rotate(0deg);
|
||
|
|
opacity: 0.1;
|
||
|
|
}
|
||
|
|
|
||
|
|
100% {
|
||
|
|
-webkit-transform: rotate(1turn);
|
||
|
|
transform: rotate(1turn);
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-whatsapp {
|
||
|
|
position: fixed;
|
||
|
|
z-index: 999;
|
||
|
|
bottom: 20px;
|
||
|
|
right: 80px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-whatsapp:before,
|
||
|
|
.btn-whatsapp:after {
|
||
|
|
content: "";
|
||
|
|
position: absolute;
|
||
|
|
top: 10px;
|
||
|
|
left: 10px;
|
||
|
|
width: 180px;
|
||
|
|
height: 180px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background-color: #eda409;
|
||
|
|
opacity: 0;
|
||
|
|
animation: onda 1s infinite;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-whatsapp:before {
|
||
|
|
animation-delay: 0.2s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-whatsapp:after {
|
||
|
|
animation-delay: 0.5s;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-whatsapp img {
|
||
|
|
position: relative;
|
||
|
|
z-index: 2;
|
||
|
|
}
|
||
|
|
|
||
|
|
@keyframes onda {
|
||
|
|
0% {
|
||
|
|
transform: scale(1);
|
||
|
|
}
|
||
|
|
|
||
|
|
15% {
|
||
|
|
opacity: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
100% {
|
||
|
|
opacity: 0;
|
||
|
|
transform: scale(2.5);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<!-- / Vuexy loading Screen CSS -->
|
||
|
|
<link rel="stylesheet" href="styles.25e78598e48cde52.css"></head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<!-- Vuexy loading Screen -->
|
||
|
|
<core-loading-screen id="loading-bg">
|
||
|
|
<div class="loading-logo btn-whatsapp">
|
||
|
|
<img src="assets/images/logo/logo.png" width="200px" height="200px" alt="Logo"/>
|
||
|
|
</div>
|
||
|
|
<div class="loading">
|
||
|
|
<!-- <div class="effect-1 effects"></div>
|
||
|
|
<div class="effect-2 effects"></div>
|
||
|
|
<div class="effect-3 effects"></div> -->
|
||
|
|
</div>
|
||
|
|
</core-loading-screen>
|
||
|
|
<!-- / Vuexy loading Screen -->
|
||
|
|
|
||
|
|
<!-- Vuexy root component -->
|
||
|
|
<app-root> </app-root>
|
||
|
|
<!-- / Vuexy root component -->
|
||
|
|
<script src="runtime.18f56db2ac9a029c.js" type="module"></script><script src="polyfills.9f0e2963f7a9a1e2.js" type="module"></script><script src="scripts.4c365bdac1e5b112.js" defer></script><script src="main.79e8556de38d9cb9.js" type="module"></script></body>
|
||
|
|
|
||
|
|
</html>
|