principal
This commit is contained in:
+41
@@ -1,3 +1,4 @@
|
|||||||
|
<<<<<<< HEAD
|
||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<Header />
|
<Header />
|
||||||
@@ -39,3 +40,43 @@ export default {
|
|||||||
margin: 0 !important;
|
margin: 0 !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
=======
|
||||||
|
<template>
|
||||||
|
<div id="app">
|
||||||
|
<Header />
|
||||||
|
<router-view></router-view>
|
||||||
|
<Footer />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import Header from "./esteticas/header.vue";
|
||||||
|
import Footer from "./esteticas/footer.vue";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "App",
|
||||||
|
components: {
|
||||||
|
Header,
|
||||||
|
Footer
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
#app {
|
||||||
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
text-align: center;
|
||||||
|
color: #2c3e50;
|
||||||
|
margin-top: 60px;
|
||||||
|
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.row {
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
>>>>>>> pruebas
|
||||||
|
|||||||
Binary file not shown.
|
After Width: | Height: | Size: 58 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 6.7 KiB |
@@ -1,3 +1,4 @@
|
|||||||
|
<<<<<<< HEAD
|
||||||
<template>
|
<template>
|
||||||
<div class="divMaster">
|
<div class="divMaster">
|
||||||
<div class="footer cl-12 azulUnam">
|
<div class="footer cl-12 azulUnam">
|
||||||
@@ -74,3 +75,96 @@
|
|||||||
height: 100px;
|
height: 100px;
|
||||||
} */
|
} */
|
||||||
</style>
|
</style>
|
||||||
|
=======
|
||||||
|
<template>
|
||||||
|
<footer class="container-fluid Azul-puma footer py-3 ">
|
||||||
|
<container>
|
||||||
|
<div row>
|
||||||
|
<button type="button" class="col-md-6 col-sm-12 btn boton-footer uno">
|
||||||
|
Comité Editorial
|
||||||
|
</button>
|
||||||
|
<button type="button" class="col-md-6 col-sm-12 btn boton-footer dos">
|
||||||
|
Política Editorial y Lineamentos
|
||||||
|
</button>
|
||||||
|
<button type="button" class="col-md-6 col-sm-12 btn boton-footer tres">
|
||||||
|
Proceso Editorial y Organismos
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="col-md-6 col-sm-12 btn boton-footer cuatro"
|
||||||
|
>
|
||||||
|
Puntos de Venta
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</container>
|
||||||
|
<div row>
|
||||||
|
<p class="mb-0 ">Hecho en México, todos los derechos reservados 2020.</p>
|
||||||
|
<p class="my-0 ">
|
||||||
|
Esta página puede ser reproducida con fines no lucrativos, siempre y
|
||||||
|
cuando no se mutile, se cite la fuente
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
completa y su dirección electrónica. De otra forma, requiere permiso
|
||||||
|
previo por escrito de la institución.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.boton-footer {
|
||||||
|
background-color: rgb(187, 136, 0);
|
||||||
|
color: white;
|
||||||
|
width: 14rem;
|
||||||
|
font-size: 0.8rem;
|
||||||
|
}
|
||||||
|
.uno,.dos,
|
||||||
|
.tres {
|
||||||
|
margin-right: 1rem;
|
||||||
|
}
|
||||||
|
.btn{
|
||||||
|
margin-bottom: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.Azul-puma {
|
||||||
|
background-color: #1e3c70;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
text-align: center;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.uno,.tres {
|
||||||
|
margin-right: 4rem;
|
||||||
|
}
|
||||||
|
.dos{
|
||||||
|
margin-right: 0rem;
|
||||||
|
}
|
||||||
|
.footer {
|
||||||
|
font-size: 0.7rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 970px) {
|
||||||
|
.uno,.dos,
|
||||||
|
.tres {
|
||||||
|
margin-right: .5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer {
|
||||||
|
font-size: 0.7rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
</style>
|
||||||
|
>>>>>>> pruebas
|
||||||
|
|||||||
+37
-49
@@ -1,67 +1,55 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="divMaster">
|
<container>
|
||||||
<div class="header cl-12 azulUnam">
|
<div class="row divMaster header cl-12 azulUnam">
|
||||||
<div class="row">
|
<div
|
||||||
<div
|
class="logo_unam col-4 offset-1 d-inline-flex my-2 align-items-center"
|
||||||
class="logo_unam col-4 offset-1 d-inline-flex my-2 align-items-center"
|
>
|
||||||
>
|
<a href="https://www.unam.mx/" target="_blank">
|
||||||
<a href="https://www.unam.mx/" target="_blank">
|
<img class="sizeImg" src="../assets/Logo-UNAM.png" alt="logo unam" />
|
||||||
<img
|
</a>
|
||||||
class="sizeImg"
|
</div>
|
||||||
src="https://www.c3.unam.mx/image/logoUnam.png"
|
|
||||||
alt="logo unam"
|
|
||||||
/>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="logo_acatlan col-4 offset-2 d-inline-flex justify-content-end my-2 align-items-center"
|
class="logo_acatlan col-4 offset-2 d-inline-flex justify-content-end my-2 align-items-center"
|
||||||
>
|
>
|
||||||
<a href="https://www.acatlan.unam.mx/" target="_blank">
|
<a href="https://www.acatlan.unam.mx/" target="_blank">
|
||||||
<img
|
<img
|
||||||
class="sizeImg"
|
class="sizeImg"
|
||||||
src="https://flisol.acatlan.unam.mx/img/logo-acatlan.png"
|
src="../assets/FES-editoriales.png"
|
||||||
alt="logo unam"
|
alt="logo unam"
|
||||||
/>
|
/>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="logo_acatlan_resp col-8 offset-2 d-flex justify-content-center my-2 align-items-center"
|
class="logo_acatlan_resp col-8 offset-2 d-flex justify-content-center my-2 align-items-center"
|
||||||
>
|
>
|
||||||
<a href="https://www.acatlan.unam.mx/" target="_blank">
|
<a href="https://www.acatlan.unam.mx/" target="_blank">
|
||||||
<img
|
<img
|
||||||
class="sizeImg"
|
class="sizeImg"
|
||||||
src="../assets/FESAcatlan.png"
|
src="../assets/FES-editoriales.png"
|
||||||
alt="logo unam"
|
alt="logo unam"
|
||||||
/>
|
/>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style >
|
||||||
* {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.divMaster {
|
.divMaster {
|
||||||
|
<<<<<<< HEAD
|
||||||
/* max-width: 1280px; */
|
/* max-width: 1280px; */
|
||||||
height: auto;
|
height: auto;
|
||||||
|
=======
|
||||||
|
height: 7em;
|
||||||
|
>>>>>>> pruebas
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.azulUnam {
|
.azulUnam {
|
||||||
background-color: #1e3c70;
|
background-color: #1e3c70;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* .header{
|
|
||||||
height: 100px;
|
|
||||||
} */
|
|
||||||
|
|
||||||
.sizeImg {
|
.sizeImg {
|
||||||
height: 5rem;
|
height: 5rem;
|
||||||
}
|
}
|
||||||
@@ -78,7 +66,7 @@
|
|||||||
display: block !important;
|
display: block !important;
|
||||||
}
|
}
|
||||||
.logo_acatlan_resp a img {
|
.logo_acatlan_resp a img {
|
||||||
height: 3rem;
|
height: 5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user