This commit is contained in:
2020-04-10 02:21:25 -04:00
parent f69cb57c36
commit 692c001cd5
39 changed files with 887 additions and 0 deletions

4
public/.htaccess Normal file
View File

@ -0,0 +1,4 @@
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]

View File

@ -0,0 +1,9 @@
#page_logo {
font-family: Raleway, sans-serif;
font-weight: 800;
font-size: 2.2rem;
color: #404041;
}
#page_logo .orange {
color: #F26721;
}

View File

@ -0,0 +1,77 @@
#banner {
background-color: grey;
color: white;
font-family: Roboto, sans-serif !important;
padding-top: 10rem;
padding-bottom: 10rem;
}
#banner .header {
font-family: inherit;
}
#servicios {
padding-top: 2rem;
padding-bottom: 3rem;
}
#frase {
padding-top: 4rem;
padding-bottom: 4rem;
}
#nosotros {
background-color: #f0f0f0;
}
#nosotros .column {
padding-top: 0;
padding-bottom: 0;
}
#nosotros .contenido {
padding-top: 5rem;
padding-bottom: 5rem;
}
#nosotros .placeholder {
height: 100%;
}
#clientes {
padding-top: 4rem;
padding-bottom: 6rem;
}
#clientes .header:first-child {
padding-bottom: 1rem;
}
#clientes .ci {
display: flex;
align-items: center
}
#testimonios {
background-color: grey;
color: #404040;
min-height: 30rem;
display: flex;
align-items: center
}
#testimonios .segment, #testimonios .header {
color: #404040 !important;
}
#eventos {
background-color: #f0f0f0;
padding-top: 3rem;
padding-bottom: 5rem;
}
#eventos .segment {
background-color: white;
padding: 0;
}
#contacto {
padding-top: 4rem;
padding-bottom: 4rem;
}
#contacto #map {
/*margin-top: 3rem;*/
height: 100%;
}

View File

@ -0,0 +1,38 @@
body, .ui {
font-family: Roboto, sans-serif !important;
}
footer {
flex: none;
color: white;
height: 20rem;
font-family: Roboto;
}
footer .dark-grey {
background-color: grey;
}
footer .grid {
margin: 0 !important;
}
footer .main {
min-height: 16rem !important;
padding-top: 3rem !important;
}
footer a {
color: inherit;
}
footer .small {
font-size: 0.8rem !important;
}
footer .grey {
background-color: rgba(0, 0, 0, 0.1) !important;
color: rgba(0, 0, 0, 0.7) !important;
min-height: 3rem !important;
}
footer nav.menu {
font-size: 0.9rem !important;
border: 0 !important;
}
footer nav.menu .item:first-child {
padding-left: 0 !important;
}

9
public/index.php Normal file
View File

@ -0,0 +1,9 @@
<?php
$__environment = 'web';
include_once implode(DIRECTORY_SEPARATOR, [
dirname(__DIR__),
'bootstrap',
'app.php'
]);
$app->run();