aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/style.css
blob: 4401ac967643ca3aa3d255c8b79eacdb8cb9f136 (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
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
  --fc-menu_height: 50px;
  user-select: none;
}

#app {
  position: relative;
  height: 100%;
  width: 100%;
}

#fc_bg__container {
  background: url(/src/assets/wallpaperflare.com_wallpaper.jpg) center no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: fixed;
  filter: brightness(0.8);
  scale: 1.03;
}

.el-scrollbar {
  --el-scrollbar-opacity: 0.5;
  --el-scrollbar-hover-opacity: 0.7;
}

.fc-container {
    position: relative;
    padding-top: var(--fc-menu_height);
    height: 100%;
    color: white;
}