Prepare for this year's survey, part 2

Fixes #4
This commit is contained in:
Aarni Koskela
2022-09-26 15:30:21 +03:00
parent 0b188b4fd7
commit 07ffb3a44d
7 changed files with 50 additions and 8 deletions

18
out/index.html Normal file
View File

@@ -0,0 +1,18 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="style.css">
<title>Koodiklinikan palkkakysely</title>
</head>
<body>
<h1>Koodiklinikan palkkakysely</h1>
<ul>
<li><a href="2021/">2021</a></li>
<li>2022 (kohta!)</li>
</ul>
</body>
</html>

25
out/style.css Normal file
View File

@@ -0,0 +1,25 @@
body {
max-width: 650px;
margin: 40px auto;
padding: 0 10px;
font: 18px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
h1, h2, h3 {
line-height: 1.2
}
@media (prefers-color-scheme: dark) {
body {
color: white;
background: #444
}
a:link {
color: #5bf
}
a:visited {
color: #ccf
}
}