Files
servicio_social_front/components/layouts/Header.vue
T

65 lines
1.3 KiB
Vue
Raw Normal View History

2020-11-10 23:25:34 -06:00
<template>
2021-11-24 22:05:37 -06:00
<header class="header-page">
2021-05-13 14:32:58 -05:00
<div class="container py-3">
2020-12-08 21:50:16 -06:00
<div
2021-05-13 14:32:58 -05:00
class="columns is-gapless is-vcentered is-justify-content-space-between is-mobile"
2020-12-08 21:50:16 -06:00
>
<a
href="https://www.unam.mx/"
2021-05-13 14:32:58 -05:00
class="column is-5-mobile is-3-tablet is-one-fifth-widescreen ml-3"
2020-12-08 21:50:16 -06:00
target="_blank"
>
2020-11-13 18:19:14 -06:00
<b-image
:src="require('@/assets/logo_unam.png')"
alt="logo_unam"
></b-image>
2020-11-13 18:30:17 -06:00
</a>
2020-11-13 18:19:14 -06:00
2020-12-08 21:50:16 -06:00
<a
href="https://www.acatlan.unam.mx/"
2021-05-13 14:32:58 -05:00
class="column is-5-mobile is-3-tablet is-one-fifth-widescreen mr-3"
2020-12-08 21:50:16 -06:00
target="_blank"
>
2020-11-13 18:19:14 -06:00
<b-image
:src="require('@/assets/logo_acatlan.png')"
2021-05-13 14:32:58 -05:00
alt="logo_acatlan"
2020-11-13 18:19:14 -06:00
></b-image>
2020-11-13 18:30:17 -06:00
</a>
2020-11-10 23:25:34 -06:00
</div>
</div>
</header>
</template>
<script>
2021-05-13 14:22:56 -05:00
export default {}
2020-11-10 23:25:34 -06:00
</script>
2021-11-24 22:05:37 -06:00
<style>
.header-page {
2021-05-13 14:32:58 -05:00
background-color: #1d3d6f;
2020-11-11 18:13:26 -06:00
}
2021-11-24 22:05:37 -06:00
.input:focus {
border: #1b3d70;
box-shadow: 0 0 8px 0 #1b3d70;
}
.select select:focus {
border-color: #1b3d70;
box-shadow: 0 0 8px 0 #1b3d70;
}
.select:not(.is-multiple):not(.is-loading)::after {
border-color: #1b3d70;
}
.pagination-link.is-current {
background-color: #1b3d70;
border-color: #1b3d70;
}
.pointer {
cursor: pointer;
}
2020-11-10 23:25:34 -06:00
</style>