py/icalfilter: add a font
This commit is contained in:
parent
f7686f6a5a
commit
4fe4317896
1 changed files with 13 additions and 0 deletions
|
@ -3,7 +3,20 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Calendar</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/static/main.css">
|
||||
<style type="text/css">
|
||||
body {
|
||||
margin: 0;
|
||||
height: 100vh;
|
||||
box-sizing: border-box;
|
||||
padding: 8px;
|
||||
|
||||
font-family: 'League Spartan', sans-serif;
|
||||
}
|
||||
</style>
|
||||
<script src="/static/main.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
|
Loading…
Reference in a new issue