2023-05-01 15:58:54 +00:00
|
|
|
|
<script setup lang="ts">
|
2023-05-10 16:46:20 +00:00
|
|
|
|
import KUNGalgameTopBar from '@/components/KUNGalgameTopBar.vue'
|
|
|
|
|
import WangEditor from '@/components/WangEditor.vue'
|
2023-06-07 14:16:33 +00:00
|
|
|
|
import Footer from './components/Footer.vue'
|
|
|
|
|
import KUNGalgameFooter from '@/components/KUNGalgameFooter.vue'
|
2023-05-01 15:58:54 +00:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2023-06-07 06:15:14 +00:00
|
|
|
|
<div class="root">
|
2023-05-01 15:58:54 +00:00
|
|
|
|
<!-- 头部 -->
|
2023-05-10 16:46:20 +00:00
|
|
|
|
<KUNGalgameTopBar />
|
2023-05-01 15:58:54 +00:00
|
|
|
|
<!-- 内容区容器 -->
|
|
|
|
|
<div class="container">
|
|
|
|
|
<!-- 内容区容器 -->
|
|
|
|
|
<div class="content-wrapper">
|
|
|
|
|
<!-- 内容区的头部 -->
|
|
|
|
|
<div class="content-header">
|
|
|
|
|
<!-- 帖子的标题 -->
|
|
|
|
|
<div class="topic-title">
|
|
|
|
|
<input type="text" placeholder="请输入帖子的标题(40字以内)" />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 编辑器 -->
|
2023-05-12 15:13:31 +00:00
|
|
|
|
<WangEditor class="editor" />
|
2023-05-01 15:58:54 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
2023-06-07 14:16:33 +00:00
|
|
|
|
<Footer />
|
2023-05-01 15:58:54 +00:00
|
|
|
|
</div>
|
|
|
|
|
<!-- 版权 -->
|
2023-06-07 14:16:33 +00:00
|
|
|
|
<KUNGalgameFooter style="margin: 0 auto; margin-bottom: 17px" />
|
|
|
|
|
<span style="margin: 0 auto">Editor powered by wangEditor</span>
|
2023-05-01 15:58:54 +00:00
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
2023-05-25 07:55:30 +00:00
|
|
|
|
<style lang="scss" scoped>
|
2023-05-01 15:58:54 +00:00
|
|
|
|
.content-wrapper {
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
.root {
|
|
|
|
|
height: 100vh;
|
2023-05-12 15:13:31 +00:00
|
|
|
|
min-height: 1100px;
|
2023-05-10 16:46:20 +00:00
|
|
|
|
min-width: 900px;
|
2023-05-01 15:58:54 +00:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
/* 内容部分的总容器 */
|
|
|
|
|
.container {
|
2023-05-10 16:46:20 +00:00
|
|
|
|
width: 80%;
|
2023-05-12 15:13:31 +00:00
|
|
|
|
height: 100%;
|
2023-05-01 15:58:54 +00:00
|
|
|
|
margin: auto;
|
|
|
|
|
/* 容器的阴影 */
|
2023-06-05 06:32:08 +00:00
|
|
|
|
box-shadow: var(--shadow);
|
2023-06-06 09:44:11 +00:00
|
|
|
|
background-color: var(--kungalgame-trans-white-2);
|
2023-06-05 06:32:08 +00:00
|
|
|
|
color: var(--kungalgame-font-color-3);
|
2023-05-01 15:58:54 +00:00
|
|
|
|
}
|
|
|
|
|
/* 容器的顶部 */
|
|
|
|
|
.content-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
/* 顶部的固定高度 */
|
|
|
|
|
height: 90px;
|
|
|
|
|
}
|
|
|
|
|
/* 帖子的发布标题 */
|
|
|
|
|
.topic-title {
|
2023-05-10 16:46:20 +00:00
|
|
|
|
width: 97%;
|
2023-05-01 15:58:54 +00:00
|
|
|
|
}
|
|
|
|
|
/* 帖子标题的输入框 */
|
|
|
|
|
.topic-title input {
|
2023-06-05 06:32:08 +00:00
|
|
|
|
color: var(--kungalgame-font-color-2);
|
2023-05-01 15:58:54 +00:00
|
|
|
|
/* 距离外轮廓的距离 */
|
|
|
|
|
padding: 7px;
|
|
|
|
|
/* 内边距盒子 */
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
width: 100%;
|
|
|
|
|
/* 标题输入字体大小 */
|
|
|
|
|
font-size: 40px;
|
2023-06-05 06:32:08 +00:00
|
|
|
|
border: 1px solid var(--kungalgame-blue-4);
|
|
|
|
|
background-color: var(--kungalgame-trans-white-9);
|
2023-05-01 15:58:54 +00:00
|
|
|
|
}
|
|
|
|
|
/* 标题输入框 focus 之后的样式 */
|
|
|
|
|
.topic-title input:focus {
|
2023-06-05 06:32:08 +00:00
|
|
|
|
box-shadow: 0px 0px 5px var(--kungalgame-blue-4);
|
2023-05-01 15:58:54 +00:00
|
|
|
|
}
|
|
|
|
|
</style>
|