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

37 lines
567 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");
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-07-01 18:49:14 +08:00
font-family: "LXGW WenKai Mono", sans-serif;
2023-02-05 18:11:34 +08:00
}
#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;
}
2023-08-12 20:50:03 +08:00
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.5s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}