Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8ae9294477 | |||
| 62b184430c | |||
| 88aff09b38 |
+38
-35
@@ -1,35 +1,38 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
<Header />
|
<Header />
|
||||||
<router-view></router-view>
|
<router-view></router-view>
|
||||||
</div>
|
<Footer />
|
||||||
</template>
|
</div>
|
||||||
|
</template>
|
||||||
<script>
|
|
||||||
import Header from "./esteticas/header.vue";
|
<script>
|
||||||
|
import Header from "./esteticas/header.vue";
|
||||||
export default {
|
import Footer from "./esteticas/footer.vue";
|
||||||
name: "App",
|
|
||||||
components: {
|
export default {
|
||||||
Header
|
name: "App",
|
||||||
}
|
components: {
|
||||||
};
|
Header,
|
||||||
</script>
|
Footer
|
||||||
|
}
|
||||||
<style>
|
};
|
||||||
#app {
|
</script>
|
||||||
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
<style>
|
||||||
-moz-osx-font-smoothing: grayscale;
|
#app {
|
||||||
text-align: center;
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||||||
color: #2c3e50;
|
-webkit-font-smoothing: antialiased;
|
||||||
margin-top: 60px;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
text-align: center;
|
||||||
padding: 0;
|
color: #2c3e50;
|
||||||
margin: 0;
|
margin-top: 60px;
|
||||||
}
|
|
||||||
|
padding: 0;
|
||||||
.row {
|
margin: 0;
|
||||||
margin: 0 !important;
|
}
|
||||||
}
|
|
||||||
</style>
|
.row {
|
||||||
|
margin: 0 !important;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
@@ -0,0 +1,91 @@
|
|||||||
|
<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>
|
||||||
+33
-31
@@ -1,40 +1,42 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="row divMaster header cl-12 azulUnam">
|
<container>
|
||||||
<div
|
<div class="row divMaster header cl-12 azulUnam">
|
||||||
class="logo_unam col-4 offset-1 d-inline-flex my-2 align-items-center"
|
<div
|
||||||
>
|
class="logo_unam col-4 offset-1 d-inline-flex my-2 align-items-center"
|
||||||
<a href="https://www.unam.mx/" target="_blank">
|
>
|
||||||
<img class="sizeImg" src="../assets/Logo-UNAM.png" alt="logo unam" />
|
<a href="https://www.unam.mx/" target="_blank">
|
||||||
</a>
|
<img class="sizeImg" src="../assets/Logo-UNAM.png" alt="logo unam" />
|
||||||
</div>
|
</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="../assets/FES-editoriales.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/FES-editoriales.png"
|
src="../assets/FES-editoriales.png"
|
||||||
alt="logo unam"
|
alt="logo unam"
|
||||||
/>
|
/>
|
||||||
</a>
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</container>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style >
|
||||||
.divMaster {
|
.divMaster {
|
||||||
height: 7em;
|
height: 7em;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
|||||||
Reference in New Issue
Block a user