Last commit on this directory today, i think..

dev
nightly 2022-10-28 18:58:24 +02:00
parent c5fe0f677e
commit 3fb10cd72a
2 changed files with 9 additions and 7 deletions

View File

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

View File

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