40 lines
759 B
Vue
40 lines
759 B
Vue
<template>
|
|
<section class="certifications">
|
|
<div class="right">
|
|
<h2>{{ $t('certifications.title1') }}</h2>
|
|
<p class="centered"><img src="@images/image_membresias.png" /></p>
|
|
</div>
|
|
<div class="left">
|
|
<h2>{{ $t('certifications.title2') }}</h2>
|
|
<p class="centered"><img src="@images/Nuestros_aliados.png" /></p>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.header {
|
|
background-color: #000;
|
|
color: #fff;
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.certifications {
|
|
height: 600px;
|
|
background-color: #000;
|
|
background-position: top left;
|
|
background-size: contain;
|
|
height: 600px;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
align-items:center;
|
|
}
|
|
|
|
</style> |