2021-02-11 23:35:32 +08:00
|
|
|
/* Remove the default outline on focused elements */
|
|
|
|
:focus,
|
|
|
|
button:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2021-03-12 18:57:01 +08:00
|
|
|
|
|
|
|
body {
|
2021-03-12 23:40:37 +08:00
|
|
|
font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica,
|
|
|
|
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
|
2021-03-12 18:57:01 +08:00
|
|
|
}
|
2021-03-20 21:10:15 +08:00
|
|
|
|
|
|
|
/* nprogress overrides (https://github.com/rstacruz/nprogress#customization) */
|
|
|
|
|
|
|
|
#nprogress .bar {
|
|
|
|
background: #3e64ff !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#nprogress .peg {
|
|
|
|
box-shadow: 0 0 10px #3e64ff, 0 0 5px #3e64ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#nprogress .spinner-icon {
|
|
|
|
border-top-color: #3e64ff;
|
|
|
|
border-left-color: #3e64ff;
|
|
|
|
}
|
2021-04-21 01:34:17 +08:00
|
|
|
|
|
|
|
/* Monaco overrides */
|
|
|
|
|
|
|
|
/* Add some spacing to code snippets in completion suggestions */
|
|
|
|
div.suggest-details-container div.monaco-tokenized-source {
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
}
|