aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/style.css
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2024-12-23 20:25:52 +0100
committerGeckoEidechse <gecko.eidechse+git@pm.me>2024-12-23 20:25:52 +0100
commit99796a9df48b579f1391030fb302e35783cb93e2 (patch)
tree9e64c1fcf9c0fe0b23c7797465a59ea677b826fb /src-vue/src/style.css
parent9df8fb8acdb6f90ba423c7b592b5ac4001f19e4f (diff)
downloadFlightCore-99796a9df48b579f1391030fb302e35783cb93e2.tar.gz
FlightCore-99796a9df48b579f1391030fb302e35783cb93e2.zip
feat: Restore style.css from main branch
Diffstat (limited to 'src-vue/src/style.css')
-rw-r--r--src-vue/src/style.css56
1 files changed, 56 insertions, 0 deletions
diff --git a/src-vue/src/style.css b/src-vue/src/style.css
new file mode 100644
index 00000000..d322a0dd
--- /dev/null
+++ b/src-vue/src/style.css
@@ -0,0 +1,56 @@
+* {
+ 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/mp_colony020033.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;
+}
+
+.noModMessage {
+ color: white;
+ margin: 30px 15px;
+}
+
+.fc_popper {
+ width: auto !important;
+}
+
+.el-popconfirm {
+ word-break: break-word;
+}