Initial commit.

main
NightlyMania 2022-05-24 15:03:26 +02:00
parent 0f04354574
commit 49d85ff51c
2 changed files with 19 additions and 0 deletions

13
index.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello world!</title>
<link rel="stylesheet" href="static/nightlycss.css">
</head>
<body>
<h1>Hello world!</h1>
</body>
</html>

6
static/nightlycss.css Normal file
View File

@ -0,0 +1,6 @@
:root {
--bgcolour: #313131;
}
body {
background-color: var(--bgcolour);
}