aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/App.vue
blob: 7022e5e0e1ab162e608c1bd7a4967fecdefa9564 (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
<script setup lang="ts">
</script>

<template>
  <div id="fc_bg__container"/>
  <el-tabs class="fc_menu__tabs" type="card">
    <el-tab-pane label="Play">Play</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: #898b8e;
  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-color: #3c4549b8;
  height: auto !important;
}

</style>