blob: dcb9aa474ddd4f15fb322b39732cd9b397b8bc56 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
<script setup lang="ts">
import PlayView from './views/PlayView.vue';
</script>
<template>
<div id="fc_bg__container"/>
<el-tabs class="fc_menu__tabs" type="card">
<el-tab-pane label="Play"><PlayView /></el-tab-pane>
<el-tab-pane label="Changelog">Changelog</el-tab-pane>
<el-tab-pane label="Mods">Mods</el-tab-pane>
<el-tab-pane label="Settings">Settings</el-tab-pane>
</el-tabs>
</template>
<style>
/* Borders reset */
.fc_menu__tabs .el-tabs__nav, .fc_menu__tabs .el-tabs__header {
border: none !important;
}
/* Header item */
.fc_menu__tabs .el-tabs__item {
color: #b4b6b9;
text-transform: uppercase;
border: none !important;
font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
font-weight: bold;
font-size: large;
margin: 10px 0;
}
.fc_menu__tabs .el-tabs__item:hover {
color: #c6c9ce;
}
.fc_menu__tabs .is-active {
color: white !important;
}
/* Header menu */
.fc_menu__tabs .el-tabs__header {
background-image: radial-gradient(transparent 1px);
backdrop-filter: saturate(50%) blur(4px);
height: auto !important;
}
</style>
|