19yuke2-frontend/src/styles/main.css

35 lines
589 B
CSS
Raw Normal View History

2023-04-09 10:42:52 +08:00
@import "./markdown.css";
2023-06-26 15:48:03 +08:00
@import url("https://cdn.staticfile.org/lxgw-wenkai-webfont/1.7.0/style.min.css");
@import url("https://cdn.staticfile.org/firacode/6.2.0/fira_code.min.css");
2023-02-05 18:11:34 +08:00
html,
body,
#app {
height: 100%;
margin: 0;
padding: 0;
2023-02-18 10:45:10 +08:00
overflow-y: auto;
2023-06-26 15:48:03 +08:00
font-family: "Fira Code", "LXGW WenKai Mono", sans-serif;
2023-02-05 18:11:34 +08:00
}
html.dark {
background: #121212;
color-scheme: dark;
}
#nprogress {
pointer-events: none;
}
#nprogress .bar {
2023-04-09 10:42:52 +08:00
background: rgb(13, 148, 136);
2023-02-05 18:11:34 +08:00
opacity: 0.75;
position: fixed;
z-index: 1031;
top: 0;
left: 0;
width: 100%;
height: 2px;
}