Estructura completa

This commit is contained in:
2022-04-24 02:01:33 -05:00
parent 8c28ed6edb
commit 999a2c26dd
25 changed files with 19709 additions and 0 deletions
+62
View File
@@ -0,0 +1,62 @@
<template>
<div class="row divMaster header cl-12 azulUnam">
<div class="wrapper">
<div class="wrapperleft">
<a href="https://www.acatlan.unam.mx/" target="_blank">
<img src="../assets/logo_acatlan.png" alt="logo acatlan" />
</a>
</div>
<div class="wrapperright2">
<a href="https://www.unam.mx/" target="_blank">
<img src="../assets/logo_unam.png" alt="logo unam" />
</a>
</div>
</div>
</div>
</template>
<script scoped>
export default {};
</script>
<style>
.wrapperright2 {
min-width: 50px;
float: left;
height: 10px;
width: 0%;
background-size: 280px, 84px;
background-repeat: no-repeat;
padding: 15px
}
.wrapperleft {
min-width: 20px;
float: right;
height: 10px;
width: 25%;
background-size: 100px, 69px;
background-repeat: no-repeat;
background-position-x: 50%;
}
.wrapper {
min-width: 50px;
width: 85%;
margin: 0px auto;
position: relative;
}
.divMaster {
height: 7em;
margin: 0 auto;
}
.azulUnam {
background-color: #1e3c70;
}
</style>