20 lines
524 B
CSS
20 lines
524 B
CSS
@import url('https://fonts.googleapis.com/css?family=IBM Plex Sans');
|
|
@import url('https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.6.0/styles/atom-one-dark.min.css');
|
|
@import url('https://cdnjs.cloudflare.com/ajax/libs/hack-font/3.3.0/web/hack.css');
|
|
|
|
body {
|
|
font-family: 'IBM Plex Sans';
|
|
}
|
|
|
|
pre {
|
|
overflow-x: auto;
|
|
white-space: pre-wrap;
|
|
white-space: -moz-pre-wrap;
|
|
white-space: -pre-wrap;
|
|
white-space: -o-pre-wrap;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.hljs {
|
|
font-family: 'Hack' !important;
|
|
}
|