2021-02-19 04:06:19 +08:00
|
|
|
:root {
|
2022-05-12 18:46:13 +08:00
|
|
|
--fontSans: Verdana, Geneva, "Bitstream Vera Sans", "DejaVu LGC Sans", Arial, sans-serif;
|
2021-02-19 04:06:19 +08:00
|
|
|
--fontSerif: "Nimbus Roman No9 L", "Times New Roman", Times, FreeSerif, serif;
|
|
|
|
--fontMono: "Liberation Mono", Monaco, Menlo, Consolas, "Courier New", FreeMono, Courier, monospace;
|
|
|
|
}
|
|
|
|
|
2020-09-05 18:22:46 +08:00
|
|
|
html, body {
|
2021-02-19 04:06:19 +08:00
|
|
|
font-family: var(--fontSans);
|
2020-09-05 18:22:46 +08:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2021-02-16 06:45:52 +08:00
|
|
|
background: var(--main-bg-color, #aaa);
|
|
|
|
color: var(--main-color, #333);
|
2020-09-05 18:22:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#rl-loading, #rl-loading-error {
|
2021-02-07 06:37:53 +08:00
|
|
|
color: var(--loading-color, #000);
|
2021-02-05 17:42:20 +08:00
|
|
|
text-shadow: var(--loading-text-shadow);
|
2020-09-05 18:22:46 +08:00
|
|
|
font-size: 30px;
|
|
|
|
line-height: 130%;
|
|
|
|
position: fixed;
|
|
|
|
text-align: center;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-02-28 22:10:04 +08:00
|
|
|
#rl-loading .icon-spinner {
|
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
2020-09-05 18:22:46 +08:00
|
|
|
}
|