some reorganization

This commit is contained in:
Ellpeck 2019-10-03 23:32:49 +02:00
parent aae5b3763e
commit 7aced5c274
8 changed files with 8 additions and 8 deletions

View File

@ -12,8 +12,8 @@
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="lib/prettify.css"> <link rel="stylesheet" href="style/prettify.css">
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="style/style.css">
<link rel="icon" href="favicon.ico"> <link rel="icon" href="favicon.ico">
<meta name="og:title" content="Ellpeck.de"> <meta name="og:title" content="Ellpeck.de">
@ -29,7 +29,7 @@
<script src="https://cdn.jsdelivr.net/npm/showdown@1.9.0/dist/showdown.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/showdown@1.9.0/dist/showdown.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/prettify.js"></script> <script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/prettify.js"></script>
<script src="lib/showdown-prettify.js"></script> <script src="scripts/showdown-prettify.js"></script>
<script src="scripts/main.js"></script> <script src="scripts/main.js"></script>
</head> </head>

View File

@ -3,11 +3,11 @@ let cookieNotification = getCookie("notification") !== "true";
let pride = new Date().getMonth() == 5; let pride = new Date().getMonth() == 5;
if (dark) { if (dark) {
document.write('<link rel="stylesheet" href="dark.css">') document.write('<link rel="stylesheet" href="style/dark.css">')
document.write('<link rel="stylesheet" href="lib/prettify-dark.css">') document.write('<link rel="stylesheet" href="style/prettify-dark.css">')
} }
if (pride) if (pride)
document.write('<link rel="stylesheet" href="pride.css">') document.write('<link rel="stylesheet" href="style/pride.css">')
$(function () { $(function () {
let openModals = function (hash) { let openModals = function (hash) {

View File

@ -55,7 +55,7 @@ ol.linenums {
} }
pre.prettyprint { pre.prettyprint {
border-radius: 10px; border-radius: 5px;
} }
.prettyprint { .prettyprint {

View File

@ -134,7 +134,7 @@ projection {
/* Put a border around prettyprinted code snippets. */ /* Put a border around prettyprinted code snippets. */
pre.prettyprint { pre.prettyprint {
border-radius: 10px; border-radius: 5px;
} }
.prettyprint { .prettyprint {