19yuke2-frontend/src/styles/main.css
2023-08-13 14:06:11 +08:00

37 lines
567 B
CSS
Executable File

@import "./markdown.css";
@import url("https://cdn.staticfile.org/lxgw-wenkai-webfont/1.7.0/style.min.css");
html,
body,
#app {
height: 100%;
margin: 0;
padding: 0;
overflow-y: auto;
font-family: "LXGW WenKai Mono", sans-serif;
}
#nprogress {
pointer-events: none;
}
#nprogress .bar {
background: rgb(13, 148, 136);
opacity: 0.75;
position: fixed;
z-index: 1031;
top: 0;
left: 0;
width: 100%;
height: 2px;
}
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.3s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}