2021-10-16 09:50:11 -07:00
|
|
|
<!DOCTYPE html>
|
2021-10-19 23:53:22 -07:00
|
|
|
<html lang="en">
|
2021-10-16 09:50:11 -07:00
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
2021-10-17 14:15:29 -07:00
|
|
|
<title>Omegaupload</title>
|
2021-10-19 23:53:22 -07:00
|
|
|
|
2021-10-21 18:35:54 -07:00
|
|
|
<link data-trunk rel="copy-file" href="vendor/MPLUS_FONTS/fonts/ttf/MplusCodeLatin[wdth,wght].ttf" dest="/" />
|
|
|
|
<link data-trunk rel="copy-file" href="vendor/highlight.min.js" dest="/" />
|
|
|
|
<link data-trunk rel="copy-file" href="vendor/highlightjs-line-numbers.js/dist/highlightjs-line-numbers.min.js"
|
|
|
|
dest="/" />
|
|
|
|
<link data-trunk rel="copy-file" href="src/reload_on_hash_change.js" dest="/" />
|
2021-10-19 23:53:22 -07:00
|
|
|
|
2021-10-21 18:35:54 -07:00
|
|
|
<link data-trunk rel="css" href="vendor/highlight.js/src/styles/github-dark.css" />
|
2021-10-19 23:53:22 -07:00
|
|
|
|
2021-10-21 18:35:54 -07:00
|
|
|
<script src="reload_on_hash_change.js" async></script>
|
|
|
|
<script src="highlight.min.js" defer></script>
|
|
|
|
<script src="highlightjs-line-numbers.min.js" defer></script>
|
2021-10-19 23:53:22 -07:00
|
|
|
|
2021-10-21 18:35:54 -07:00
|
|
|
<style>
|
2021-10-19 23:53:22 -07:00
|
|
|
@font-face {
|
|
|
|
font-family: "Mplus Code";
|
2021-10-21 18:35:54 -07:00
|
|
|
src: url("./MplusCodeLatin[wdth,wght].ttf") format("truetype");
|
2021-10-19 23:53:22 -07:00
|
|
|
}
|
|
|
|
|
2021-10-19 18:48:32 -07:00
|
|
|
body {
|
2021-10-19 23:53:22 -07:00
|
|
|
background-color: #404040;
|
2021-10-21 18:35:54 -07:00
|
|
|
font-family: 'Mplus Code', sans-serif;
|
|
|
|
margin: 0;
|
2021-10-19 23:53:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.paste {
|
|
|
|
border-radius: 1em;
|
2021-10-19 18:48:32 -07:00
|
|
|
margin: 0;
|
2021-10-19 23:53:22 -07:00
|
|
|
padding: 1em;
|
|
|
|
background-color: #0d1117;
|
|
|
|
box-shadow: 0 0 1em black;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hljs {
|
|
|
|
font-family: 'Mplus Code', sans-serif;
|
2021-10-19 18:48:32 -07:00
|
|
|
}
|
2021-10-21 18:35:54 -07:00
|
|
|
|
|
|
|
.hljs-ln td.hljs-ln-numbers {
|
|
|
|
text-align: right;
|
|
|
|
padding-right: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
pre header {
|
|
|
|
user-select: none;
|
|
|
|
margin: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
margin: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.error {
|
|
|
|
height: 100vh;
|
|
|
|
margin: 0;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2021-10-19 18:48:32 -07:00
|
|
|
</style>
|
2021-10-16 09:50:11 -07:00
|
|
|
</head>
|
|
|
|
|
|
|
|
</html>
|