Cree las rutas para la creacion de projectos
This commit is contained in:
44
public/css/admin.css
vendored
44
public/css/admin.css
vendored
@@ -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
38
public/css/app.css
vendored
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user