foundations and home
This commit is contained in:
36
src/components/CoffeeFarmer.vue
Normal file
36
src/components/CoffeeFarmer.vue
Normal file
@ -0,0 +1,36 @@
|
||||
<template>
|
||||
<section class="coffeefarmers">
|
||||
<h3 class="header">{{ $t('coffeefarmers.title') }}</h3>
|
||||
<div class="separator"></div>
|
||||
</section>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.coffeefarmers {
|
||||
height: 590px;
|
||||
background-image: url('@images/grains.png');
|
||||
background-repeat: no-repeat;
|
||||
background-size: contain;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
h3.header {
|
||||
font-weight: 400;
|
||||
font-size: 48px;
|
||||
line-height: 58px;
|
||||
padding: 175px 230px 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.separator {
|
||||
border-top: 2px solid #fff;
|
||||
width: 700px;
|
||||
margin: 50px auto 0;
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user