cebg-website/src/components/about/Whitepaper.vue
huangjinming 94bef74e15 fix
2023-03-30 11:47:43 +08:00

116 lines
2.4 KiB
Vue

<template>
<div class="whitepaper">
<div class="whitepaper-bg">
<img src="@/assets/img/about/whitepaper-bg.png" alt="" />
</div>
<div class="whitepaper-bottom-boder">
<img src="@/assets/img/about/whitepaper-bottom-boder.png" alt="" />
</div>
<div class="content">
<div class="title">Whitepaper</div>
<div class="title-boder">
<img src="@/assets/img/about/roadmap-title-boder.png" alt="" />
</div>
<div class="slogan">
<div>
<ScrollAnimatedText>
CEBG is the first blockchain-based animation game which consists of
Moba, Battleroyal; funded by more than 7 institutional
investors.
</ScrollAnimatedText
>
</div>
</div>
<div class="more">
<a href="#">
Learn more about our studio mission
<span class="more-right">>></span></a
>
</div>
</div>
</div>
</template>
<script setup>
import ScrollAnimatedText from "../global/ScrollAnimatedText.vue";
</script>
<style lang="scss" scoped>
.whitepaper {
position: relative;
padding-top: 180px;
padding-bottom: 327px;
.whitepaper-bg {
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
z-index: -10;
img {
width: 100%;
height: 100%;
}
}
.whitepaper-bottom-boder {
position: absolute;
left: 0;
bottom: -10px;
right: 0;
width: 100%;
height: 234px;
z-index: -10;
img {
width: 100%;
height: 100%;
}
}
.content {
width: 1440px;
margin: 0 auto;
.title {
font-size: 48px;
margin-left: 66px;
font-family: "Big John";
font-weight: 400;
color: #ffffff;
}
.title-boder {
width: 707px;
height: 71px;
}
.slogan {
width: 590px;
margin-top: 54px;
margin-left: 64px;
padding-bottom: 52px;
font-size: 18px;
font-family: "Poppins";
font-weight: 400;
color: #ffffff;
line-height: 26px;
}
.more {
border: 2px solid #ec2e5b;
color: #4bffe5;
width: 546px;
text-align: center;
height: 61px;
line-height: 61px;
margin-left: 64px;
font-size: 26px;
font-family: Arial;
font-weight: bold;
a {
color: #4bffe5;
}
}
.more-right {
color: #ec2e5b;
}
}
}
</style>