65 lines
1.3 KiB
Vue
65 lines
1.3 KiB
Vue
<template>
|
|
<section class="border14">
|
|
<div class="border14-title">
|
|
<div class="icon left"/>
|
|
<h2>{{ title }}</h2>
|
|
<div class="icon"/>
|
|
</div>
|
|
<div class="slot">
|
|
<slot/>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
name: 'border14',
|
|
props: ['title', 'theme']
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.border14 {
|
|
height: 100%;
|
|
background-image: linear-gradient(180deg, rgba(61, 88, 161, 0) 0%, rgba(13, 36, 119, 0.9) 99%);
|
|
background-size: 100% 100%;
|
|
background-color: rgba(#0D2477, .3);
|
|
|
|
.border14-title {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 68px;
|
|
box-sizing: border-box;
|
|
background-image: url(../asset/border14.svg);
|
|
background-size: 1478px 142px;
|
|
background-repeat: no-repeat;
|
|
padding-top: 30px;
|
|
background-position: center -20px;
|
|
|
|
h2 {
|
|
font-size: 26px;
|
|
color: #09F0FE;
|
|
margin: 0 20px;
|
|
}
|
|
|
|
.icon {
|
|
width: 20px;
|
|
height: 8px;
|
|
background-image: url("../asset/border14-icon.svg");
|
|
background-size: 35px 22px;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
|
|
&.left {
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.slot {
|
|
height: calc(100% - 68px);
|
|
}
|
|
}
|
|
</style>
|