|
|
|
<template>
|
|
|
|
<section id="service">
|
|
|
|
<div class="text-container">
|
|
|
|
<h1>Our Service</h1>
|
|
|
|
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Eius, quod voluptatibus sed rem quibusdam, iste
|
|
|
|
at vitae ducimus quidem nam beatae doloremque libero qui corporis corrupti earum suscipit a dolores?</p>
|
|
|
|
</div>
|
|
|
|
<div class="options">
|
|
|
|
<div class="option">
|
|
|
|
<h1>Create</h1>
|
|
|
|
<span id="line"></span>
|
|
|
|
<p>Lorem ipsum dolor sit amet consectetur adipisicing.</p>
|
|
|
|
</div>
|
|
|
|
<div class="option">
|
|
|
|
<h1>Share</h1>
|
|
|
|
<span id="line"></span>
|
|
|
|
<p>Lorem ipsum dolor sit amet consectetur adipisicing.</p>
|
|
|
|
</div>
|
|
|
|
<div class="option">
|
|
|
|
<h1>Experience</h1>
|
|
|
|
<span id="line"></span>
|
|
|
|
<p>Lorem ipsum dolor sit amet consectetur adipisicing.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
#service {
|
|
|
|
height: 80vh;
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: 1fr 1.5fr;
|
|
|
|
|
|
|
|
|
|
|
|
margin-bottom: 15%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.text-container {
|
|
|
|
width: 40%;
|
|
|
|
padding: 5%;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
.options {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 10%;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.option {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 20px 20px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.option:nth-of-type(2) {
|
|
|
|
background-color: #bdb0bc;
|
|
|
|
}
|
|
|
|
|
|
|
|
#line {
|
|
|
|
background-color: black;
|
|
|
|
width: 25%;
|
|
|
|
height: 3px;
|
|
|
|
}
|
|
|
|
</style>
|