Move the stylesheet to its own file

main
Jasper Bok 2023-08-13 16:58:04 +02:00
parent 465b033971
commit 03bc96850c
2 changed files with 9 additions and 4 deletions

View File

@ -2,11 +2,9 @@
<html lang="nl">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="/static/css/busdepartures.css">
<title>Busvertrektijden</title>
<style>
h2 { margin-bottom: 2px; }
dt { font-weight: bold; }
</style>
</head>
<body>
{{ range .Quays }}

View File

@ -0,0 +1,7 @@
h2 {
margin-bottom: 2px;
}
dt {
font-weight: bold;
}