Files
paidi_front/src/components/header.vue
T
2022-04-26 13:58:28 -05:00

64 lines
1.2 KiB
Vue

<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" class= "img-fluid" alt="logo acatlan" />
</a>
</div>
<div class="wrapperright2">
<a href="https://www.unam.mx/" target="_blank">
<img src="../assets/logo_unam.png" class= "img-fluid" alt="logo unam" />
</a>
</div>
</div>
</div>
</template>
<script scoped>
export default {};
</script>
<style>
.wrapperright2 {
min-width: 50px;
float: left;
height: 10px;
width: 48%;
background-size: 280px, 84px;
background-repeat: no-repeat;
padding: 13px
}
.wrapperleft {
min-width: 20px;
float: right;
height: 10px;
width: 50%;
background-size: 100px, 69px;
background-repeat: no-repeat;
background-position-x: 50%;
padding: 4px
}
.wrapper {
min-width: 50px;
width: 100%;
margin: 0px auto;
position: relative;
}
.divMaster {
height: 7em;
margin: 0 auto;
}
.azulUnam {
background-color: #1e3c70;
}
</style>