test #1

Merged
nightlymania merged 2 commits from dev into main 2022-11-03 18:42:27 +01:00
2 changed files with 9 additions and 7 deletions
Showing only changes of commit 3fb10cd72a - Show all commits

View File

@ -8,8 +8,10 @@
<link rel="stylesheet" href="static/nightlycss.css">
</head>
<body>
<div id="content">
<h1>Welcome to my website!</h1>
<div id="container">
<div id="header">
<h1>Hello!</h1>
</div>
</div>
</body>
</html>

View File

@ -1,16 +1,16 @@
:root {
--bgcolour: #212121;
--sdbarcolour: #6600ff;
--sdbarcolour: #4c208f;
--textcolour: #EFF0F1;
}
body {
font-family: 'Helvetica', 'Arial', sans-serif;
background-color: var(--bgcolour);
margin:0;
margin: 0;
color: var(--textcolour);
}
#content {
margin-top: 2vw;
margin-left: 2vw;
.container {
display: flex;
flex-direction: column;
}