Cree las rutas para la creacion de projectos

This commit is contained in:
Daniel Cortés
2019-07-03 01:28:51 -04:00
parent b15c2dc658
commit 53b709c175
22 changed files with 491 additions and 17 deletions

44
public/css/admin.css vendored
View File

@@ -504,6 +504,44 @@ textarea.form-input {
text-transform: uppercase;
}
/* Images
-------------------------------------*/
.image-container {
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
}
.image-container img {
display: block;
margin: 0.5rem;
max-width: calc(100% - 1rem);
}
@media screen and (min-width: 600px) {
.image-container {
-webkit-flex-direction: row;
flex-direction: row;
}
.image-container img {
max-width: calc((100% / 2) - 1rem);
}
}
@media screen and (min-width: 768px) {
.image-container {
-webkit-flex-direction: row;
flex-direction: row;
}
.image-container img {
max-width: calc((100% / 3) - 1rem);
}
}
/* Base
-------------------------------------*/
@@ -604,6 +642,12 @@ textarea.form-input {
text-align: left;
}
.table td.controls,
.table th.controls {
margin-left: 0;
margin-right: auto;
}
.table td.controls a,
.table td.controls input[type=submit] {
display: block;

38
public/css/app.css vendored
View File

@@ -504,3 +504,41 @@ textarea.form-input {
text-transform: uppercase;
}
/* Images
-------------------------------------*/
.image-container {
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
}
.image-container img {
display: block;
margin: 0.5rem;
max-width: calc(100% - 1rem);
}
@media screen and (min-width: 600px) {
.image-container {
-webkit-flex-direction: row;
flex-direction: row;
}
.image-container img {
max-width: calc((100% / 2) - 1rem);
}
}
@media screen and (min-width: 768px) {
.image-container {
-webkit-flex-direction: row;
flex-direction: row;
}
.image-container img {
max-width: calc((100% / 3) - 1rem);
}
}