diff --git a/lib/attributeList.js b/lib/attributeList.js new file mode 100644 index 0000000..72e4dee --- /dev/null +++ b/lib/attributeList.js @@ -0,0 +1,842 @@ +module.exports = { + "accept":{ + "name":"accept", + "belongsTo":"", + "description":"Specifies whether the content of an element is editable or not" + }, + "accept-charset":{ + "name":"accept-charset", + "belongsTo":"
", + "description":"Specifies that audio/video controls should be displayed (such as a play/pause button etc)" + }, + "accesskey":{ + "name":"accesskey", + "belongsTo":"Global Attributes", + "description":"Specifies the coordinates of the area" + }, + "action":{ + "name":"action", + "belongsTo":"", + "description":"Specifies the URL of the resource to be used by the object" + }, + "align":{ + "name":"align", + "belongsTo":"Not supported in HTML 5.", + "description":"Used to store custom data private to the page or application" + }, + "alt":{ + "name":"alt", + "belongsTo":", , ", + "description":"Specifies the date and time" + }, + "async":{ + "name":"async", + "belongsTo":" + + + + +
+
+
+ +
+
+ +
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ + +
+
+
+ + + + +
+
+

Una forma mas rapida de obtener tu informacion legal

+

Estar infromado legalmente es un requerimiento basico para poder tomar buenas decisiones, pero el proceso tradicional usualmente resulta bastante tedioso para el cliente. Panama Consulta es un prodcuto de Faragon & Consulting que se creo con el proposito de poder conseguir la informacion legal que el cliente necesite con la minima interaccion posible. Nuestra plataforma online en conjunto con nuestro equipo de profesionales con altos estandares de cumplimiento nos permiten responder tu solicitud en menos de 24 horas a la comodidad de tu correo electronico. +

+
+ + + + + + + + + + + + \ No newline at end of file diff --git a/site/css/consultas.css b/site/css/consultas.css new file mode 100644 index 0000000..3923dc2 --- /dev/null +++ b/site/css/consultas.css @@ -0,0 +1,119 @@ +.navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://ww…p='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); +}/*absolute center*/ +.centered { + position: fixed; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); +} + +.modern-container {padding: 5% 10%;} + +@media(min-width: 992px){ + .modern-container img {border-radius: 10px 0% 0px 10px;} + .modern-container form {border-radius: 0% 10px 10px 0%;} +} +@media(max-width: 992px){ + .modern-container img {border-radius: 10px 10px 0px 0px;} + .modern-container form {border-radius: 0px 0px 10px 10px;} +} +.modern-container img { + height: 100%; + width: 100%; + object-fit: cover; +} +body { + font-family: "Open Sans"; + background-color: #efefef; +} + +.modern-form { + width: 100%; + background-color: #fff; + border: solid 1px #ccc; + padding: 8%; +} +.float-label-field { + border: none; + outline: none; + position: relative; + margin: 0 0 20px 0; + padding: 0; + box-sizing: border-box; +} +.float-label-field.focus label { + color: #218838;; +} +.float-label-field input, +.float-label-field select, +.float-label-field textarea { + border: none; + outline: none; + padding: 5px 5px 8px 0px; + width: 100%; + font-size: 18px; + border-bottom: solid 1px #efefef; +} +.float-label-field.focus input, +.float-label-field.focus select, +.float-label-field.focus textarea { + border-bottom: solid 1px #218838;; +} + +.float-label-field label { + opacity: 0.5; + position: absolute; + top: 10px; + left: 0px; + transition: all 0.2s ease; + font-size: 18px; +} + +.float-label-field.float label { + opacity: 1; + top: -10px; + font-size: 60%; + transition: all 0.2s ease; + font-weight: bold; +} +.float-label-field select { + background-color: #fff; + margin-top: 3%; +} + +select option { + background: transparent !important; + border: none !important; +} + +.modern-btn { + padding-top: 2%; + padding-bottom: 2%; + padding-left: 4%; + padding-right: 4%; + border: none !important; + border-radius: 7%; +} + +input:after { + background: none repeat scroll 0 0 transparent; + bottom: 0; + content: ""; + display: block; + height: 2px; + left: 50%; + position: absolute; + background: #fff; + transition: width 0.4s ease 0s, left 0.4s ease 0s; + width: 0; +} +a:hover:after { + width: 100%; + left: 0; +} +@media screen and (max-height: 300px) { + ul { + margin-top: 40px; + } +} \ No newline at end of file diff --git a/site/css/flip-card.css b/site/css/flip-card.css deleted file mode 100644 index 251ba46..0000000 --- a/site/css/flip-card.css +++ /dev/null @@ -1,43 +0,0 @@ -/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */ -.flip-card { - background-color: transparent; - height: 20rem; - perspective: 1000px; /* Remove this if you don't want the 3D effect */ -} - -/* This container is needed to position the front and back side */ -.flip-card-inner { - position: relative; - width: 100%; - height: 100%; - text-align: center; - transition: transform 0.8s; - transform-style: preserve-3d; -} - -/* Do an horizontal flip when you move the mouse over the flip box container */ -.flip-card:hover .flip-card-inner { - transform: rotateY(180deg); -} - -/* Position the front and back side */ -.flip-card-front, .flip-card-back { - position: absolute; - width: 100%; - height: 100%; - -webkit-backface-visibility: hidden; /* Safari */ - backface-visibility: hidden; -} - -/* Style the front side (fallback if image is missing) */ -.flip-card-front { - background-color: hsla(0, 0%, 90%, .4); - color: black; -} - -/* Style the back side */ -.flip-card-back { - background-color: hsla(0, 0%, 80%, .5); - color: white; - transform: rotateY(180deg); -} \ No newline at end of file diff --git a/site/css/index.css b/site/css/index.css index 7561e66..71a0706 100644 --- a/site/css/index.css +++ b/site/css/index.css @@ -1,58 +1,131 @@ -html,body { - width: 100%; - margin: 0px; - padding: 0px; - background-color: #160723; - background-image: linear-gradient(to top, hsla(265, 71%, 43%, .1), hsla(34, 100%, 61%, .2)); +html, body{ + font-family: 'Roboto', sans-serif; + font-size: 14pt; + width: 100%; + overflow-x: hidden; } - -.bg-main { - background-color: #160723; +h1,h2,h3,h4,h5,h6,nav ul li{ + font-family: 'PT Sans', sans-serif; } +.bg-translucent {background-color: hsla(234, 80%, 28%, .7)} +.bg-primary {background-color: #0E197F !important} +.bg-secondary {background-color: #DBDBDF !important} +.bg-alternate {background-color: #545F66 !important} +.bg-light {background-color: #FCFAFA !important} +.text-primary {color: #0E197F !important} +.text-secondary {color: #DBDBDF !important} +.text-alternate {color: #545F66 !important} +.text-light {color: #FCFAFA !important} -.text-main { - color: #160723; +.nav-link, .nav-row a{ + color: #FCFAFA !important; } - - -.padding-text -{padding-top: 20% } - -section, header { - overflow-x: hidden; +.nav-row{ + background: transparent; + width: 100%; + position: absolute; + z-index: 1; +} +.nav-row li{ + margin-left: 10%; + list-style-type: none; +} +.round-row { + border-radius: 0px 0px 7px 7px; } header { - background: url('../img/header.png'); - background-size: cover; - height: 20rem; + height: 75vh; + background-image: url('../img/drone-city4.jpg'); + background-size: cover; + position: relative; } - -.bg-sun { - background-image: linear-gradient(to top, hsla(265, 71%, 43%, .1), hsla(34, 100%, 61%, .1)); +.main-title-padding { + padding-top: 15%; + padding-bottom: 5%; } +.btn-lg {padding: 1rem 2rem;} -.main-title { - padding-top: 7rem; - font-size: 3.5em; +section { + padding-top: 3%; + padding-bottom: 3%; +} +.background-img { + background-image: url('../img/drone-city.jpg'); + background-size: cover; + position: relative; +} +.transparency { + background-color: rgba(248, 247, 216, 0.7); + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; } -.tool-logo { - max-height:12rem; - max-width:12rem; - padding-top: 2rem; - padding-bottom: 5%; +.smartphone { + position: relative; + width: 34vh; + min-height: 300px; + min-width: 169px; + height: 60vh; + margin: auto; + border: 16px black solid; + border-top-width: 60px; + border-bottom-width: 60px; + border-radius: 24px; +} +.smartphone:before { + content: ''; + display: block; + width: 60px; + height: 5px; + position: absolute; + top: -30px; + left: 50%; + transform: translate(-50%, -50%); + background: #333; + border-radius: 10px; +} +.smartphone:after { + content: ''; + display: block; + width: 35px; + height: 35px; + position: absolute; + left: 50%; + bottom: -65px; + transform: translate(-50%, -50%); + background: #333; + border-radius: 50%; +} +.smartphone .content { + width: 100%; + height: 100%; + background: white; +} +.screen-img { + width:100%;border:none;height:100% } -.tool-title{ - padding-top: 1rem; - color: #efefef; +.usage-instructions li{ + font-size: 17pt; + margin-top: 2px; +} +.usage-instructions ol{ + margin: 0px !important; } -.tool-text { - color: #efefef; +.circle-img { + border-radius: 100%; + width: 12rem; + height: 12rem; + box-shadow: 0 5px 5px 0 #adb5bd; } -.tool-element { - padding-bottom: 5%; +.circle-img img{ + height: 100%; + width: 100%; + object-fit: cover; } \ No newline at end of file diff --git a/site/css/servicios.css b/site/css/servicios.css new file mode 100644 index 0000000..ae74875 --- /dev/null +++ b/site/css/servicios.css @@ -0,0 +1,16 @@ +html, body{ + font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; font-size: 24px; font-style: normal; font-variant: normal; +} +.bg-primary {background-color: #c6c6c6 !important} +.bg-secondary {background-color: #ddd !important} +.bg-alternate {background-color: #a8a8a8 !important} +.text-primary {color: #c6c6c6 !important} +.text-secondary {color: #ddd !important} +.text-alternate {color: #a8a8a8 !important} + +.navbar-toggler-icon { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://ww…p='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); +} +section { + min-height: 50vh; +} diff --git a/site/img/.DS_Store b/site/img/.DS_Store deleted file mode 100644 index ce30983..0000000 Binary files a/site/img/.DS_Store and /dev/null differ diff --git a/site/img/Inventory-logo.png b/site/img/Inventory-logo.png deleted file mode 100644 index 375bfff..0000000 Binary files a/site/img/Inventory-logo.png and /dev/null differ diff --git a/site/img/RMS-logo.png b/site/img/RMS-logo.png deleted file mode 100644 index 4659896..0000000 Binary files a/site/img/RMS-logo.png and /dev/null differ diff --git a/site/img/accounting-logo.png b/site/img/accounting-logo.png deleted file mode 100644 index f57ccef..0000000 Binary files a/site/img/accounting-logo.png and /dev/null differ diff --git a/site/img/arjan-logo.svg b/site/img/arjan-logo.svg deleted file mode 100644 index d0db914..0000000 --- a/site/img/arjan-logo.svg +++ /dev/null @@ -1 +0,0 @@ -arjan-logo_3 \ No newline at end of file diff --git a/site/img/channel-logo.png b/site/img/channel-logo.png deleted file mode 100644 index 6f031ca..0000000 Binary files a/site/img/channel-logo.png and /dev/null differ diff --git a/site/img/consultas.jpg b/site/img/consultas.jpg new file mode 100644 index 0000000..25ca21d Binary files /dev/null and b/site/img/consultas.jpg differ diff --git a/site/img/crm-logo.png b/site/img/crm-logo.png deleted file mode 100644 index 1b7de0b..0000000 Binary files a/site/img/crm-logo.png and /dev/null differ diff --git a/site/img/cubera-logo.png b/site/img/cubera-logo.png deleted file mode 100644 index abe3833..0000000 Binary files a/site/img/cubera-logo.png and /dev/null differ diff --git a/site/img/cubera-logo_1.svg b/site/img/cubera-logo_1.svg deleted file mode 100644 index c076d25..0000000 --- a/site/img/cubera-logo_1.svg +++ /dev/null @@ -1 +0,0 @@ -cubera-logo_1Cool Cubera \ No newline at end of file diff --git a/site/img/cubera-sq-logo.png b/site/img/cubera-sq-logo.png deleted file mode 100644 index b4949b3..0000000 Binary files a/site/img/cubera-sq-logo.png and /dev/null differ diff --git a/site/img/cubera-sq-logo.svg b/site/img/cubera-sq-logo.svg deleted file mode 100644 index 97be6b7..0000000 --- a/site/img/cubera-sq-logo.svg +++ /dev/null @@ -1 +0,0 @@ -cuber-sq-logoCool Cubera \ No newline at end of file diff --git a/site/img/dorne-city3.jpg b/site/img/dorne-city3.jpg new file mode 100644 index 0000000..8f9dd79 Binary files /dev/null and b/site/img/dorne-city3.jpg differ diff --git a/site/img/drone-city.jpg b/site/img/drone-city.jpg new file mode 100644 index 0000000..22dca36 Binary files /dev/null and b/site/img/drone-city.jpg differ diff --git a/site/img/drone-city2.jpg b/site/img/drone-city2.jpg new file mode 100644 index 0000000..1932361 Binary files /dev/null and b/site/img/drone-city2.jpg differ diff --git a/site/img/drone-city4.jpg b/site/img/drone-city4.jpg new file mode 100644 index 0000000..38a9285 Binary files /dev/null and b/site/img/drone-city4.jpg differ diff --git a/site/img/header.png b/site/img/header.png deleted file mode 100644 index 15fe220..0000000 Binary files a/site/img/header.png and /dev/null differ diff --git a/site/img/helicopter-panama-city.jpg b/site/img/helicopter-panama-city.jpg new file mode 100755 index 0000000..1a2fcaf Binary files /dev/null and b/site/img/helicopter-panama-city.jpg differ diff --git a/site/img/img.svg b/site/img/img.svg new file mode 100644 index 0000000..981477d --- /dev/null +++ b/site/img/img.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/site/img/logo.svg b/site/img/logo.svg new file mode 100644 index 0000000..476b742 --- /dev/null +++ b/site/img/logo.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/site/img/panama-consulta-logo-light.svg b/site/img/panama-consulta-logo-light.svg new file mode 100644 index 0000000..4ba184e --- /dev/null +++ b/site/img/panama-consulta-logo-light.svg @@ -0,0 +1 @@ +panama-consulta-logo-lightCONSULTAPanama \ No newline at end of file diff --git a/site/img/panama-consulta-logo.svg b/site/img/panama-consulta-logo.svg new file mode 100644 index 0000000..b25408e --- /dev/null +++ b/site/img/panama-consulta-logo.svg @@ -0,0 +1 @@ +panama-consulta-logoCONSULTAPanama \ No newline at end of file diff --git a/site/img/sef-logo.svg b/site/img/sef-logo.svg deleted file mode 100644 index 35d4919..0000000 --- a/site/img/sef-logo.svg +++ /dev/null @@ -1 +0,0 @@ -sef-logo \ No newline at end of file diff --git a/site/img/square-logo.svg b/site/img/square-logo.svg deleted file mode 100644 index 47c187d..0000000 --- a/site/img/square-logo.svg +++ /dev/null @@ -1 +0,0 @@ -square-logo \ No newline at end of file diff --git a/site/img/toruscms-logo.svg b/site/img/toruscms-logo.svg deleted file mode 100644 index 8410761..0000000 --- a/site/img/toruscms-logo.svg +++ /dev/null @@ -1 +0,0 @@ -toruscms-logo \ No newline at end of file diff --git a/site/index.html b/site/index.html index 29382c2..a511526 100644 --- a/site/index.html +++ b/site/index.html @@ -1,410 +1,228 @@ + - - - - - - - - - Torus Project - - - - - - - - - - - - - - - - - -