Estructura central
This commit is contained in:
4
public/.htaccess
Normal file
4
public/.htaccess
Normal file
@ -0,0 +1,4 @@
|
||||
RewriteEngine On
|
||||
RewriteCond %{REQUEST_FILENAME} !-f
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteRule ^ index.php [QSA,L]
|
47
public/assets/styles/main.css
Normal file
47
public/assets/styles/main.css
Normal file
@ -0,0 +1,47 @@
|
||||
/*body {
|
||||
font-family: Roboto, sans-serif !important;
|
||||
}*/
|
||||
|
||||
.brand {
|
||||
color: #000070 !important;
|
||||
}
|
||||
.inverted.brand {
|
||||
background-color: #000070 !important;
|
||||
color: white !important;
|
||||
}
|
||||
.button.brand {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
header #franja {
|
||||
background-color: #707070;
|
||||
color: white !important;
|
||||
}
|
||||
header #franja .menu {
|
||||
color: inherit !important;
|
||||
}
|
||||
header #franja .menu .spacer {
|
||||
width: 3rem;
|
||||
}
|
||||
header #franja .menu .input {
|
||||
height: 1.3rem !important;
|
||||
}
|
||||
header #franja a {
|
||||
color: inherit;
|
||||
}
|
||||
header .menu {
|
||||
margin-top: 0 !important;
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
header .menu .logo {
|
||||
font-size: 2rem;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.menu {
|
||||
font-family: inherit !important;
|
||||
}
|
||||
.item {
|
||||
font-family: inherit !important;
|
||||
color: inherit !important;
|
||||
}
|
10
public/index.php
Normal file
10
public/index.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
$__environment = 'web';
|
||||
|
||||
require_once realpath(implode(DIRECTORY_SEPARATOR, [
|
||||
dirname(__DIR__),
|
||||
'bootstrap',
|
||||
'app.php'
|
||||
]));
|
||||
|
||||
$app->run();
|
Reference in New Issue
Block a user