You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
552 B
31 lines
552 B
<template>
|
|
<div class="slide_one">
|
|
<div class="main_content"></div>
|
|
<div class="bottom_statement"></div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.slide_one {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: url(../../../../../assets/img/1.jpg);
|
|
background-position: 40%;
|
|
background-size: auto 100%;
|
|
position: relative;
|
|
.main_content {
|
|
position: absolute;
|
|
left: 280px;
|
|
top: 359px;
|
|
}
|
|
.bottom_statement {
|
|
position: absolute;
|
|
left: 87px;
|
|
bottom: 77px;
|
|
}
|
|
}
|
|
</style>
|