1 Commits

Author SHA1 Message Date
danielGe 107cd7c7ee correccion de logos 2020-08-05 20:40:34 -05:00
7 changed files with 32 additions and 130 deletions
+1 -4
View File
@@ -2,19 +2,16 @@
<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
Header
}
};
</script>
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

-76
View File
@@ -1,76 +0,0 @@
<template>
<div class="divMaster">
<div class="footer cl-12 azulUnam">
<div class="row d-flex justify-content-center ">
<div class=" col-5 col-lg-3 my-3 text-center btn-foo ">
<a
href="#"
class="btn rounded-pill doradoUnam text-white btn-sm active"
role="button"
aria-pressed="true"
>Comite Editorial</a
>
</div>
<div class=" col-5 col-lg-3 my-3 text-center btn-foo ">
<a
href="#"
class="btn rounded-pill doradoUnam text-white btn-sm active"
role="button"
aria-pressed="true"
>Politica Editorial y Lineamietos</a
>
</div>
<div class=" col-5 col-lg-3 my-3 text-center btn-foo ">
<a
href="#"
class="btn rounded-pill doradoUnam text-white btn-sm active"
role="button"
aria-pressed="true"
>Libreria</a
>
</div>
<div class=" col-5 col-lg-3 my-3 text-center btn-foo ">
<a
href="#"
class="btn rounded-pill doradoUnam text-white btn-sm active"
role="button"
aria-pressed="true"
>contactanos</a
>
</div>
</div>
<div class="row">
<p class="text-white px-3">
Hecho en México, todos los derechos reservados 2020. Esta página puede
ser reproducida con fines no lucrativos, siempre y cuando no se
mutile, se cite la fuente completa y su dirección electrónica. De otra
forma, requiere permiso previo por escrito de la institución
</p>
</div>
</div>
</div>
</template>
<style scoped>
* {
margin: 0;
padding: 0;
}
.divMaster {
max-width: 1280px;
height: auto;
margin: 0 auto;
}
.azulUnam {
background-color: #1e3c70;
}
.doradoUnam {
background-color: #bb8800;
}
/* .footer{
height: 100px;
} */
</style>
+31 -50
View File
@@ -1,67 +1,48 @@
<template>
<div class="divMaster">
<div class="header cl-12 azulUnam">
<div class="row">
<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="https://www.c3.unam.mx/image/logoUnam.png"
alt="logo unam"
/>
</a>
</div>
<div class="row divMaster header cl-12 azulUnam">
<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>
</div>
<div
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">
<img
class="sizeImg"
src="https://flisol.acatlan.unam.mx/img/logo-acatlan.png"
alt="logo unam"
/>
</a>
</div>
<div
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">
<img
class="sizeImg"
src="../assets/FES-editoriales.png"
alt="logo unam"
/>
</a>
</div>
<div
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">
<img
class="sizeImg"
src="../assets/FESAcatlan.png"
alt="logo unam"
/>
</a>
</div>
</div>
<div
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">
<img
class="sizeImg"
src="../assets/FES-editoriales.png"
alt="logo unam"
/>
</a>
</div>
</div>
</template>
<style scoped>
* {
margin: 0;
padding: 0;
}
.divMaster {
max-width: 1280px;
height: auto;
height: 7em;
margin: 0 auto;
}
.azulUnam {
background-color: #1e3c70;
}
/* .header{
height: 100px;
} */
.sizeImg {
height: 5rem;
}
@@ -78,7 +59,7 @@
display: block !important;
}
.logo_acatlan_resp a img {
height: 3rem;
height: 5rem;
}
}
</style>