Begin website major redesign.

This commit is contained in:
inference 2022-10-28 21:11:05 +01:00
parent ed3ea2ecee
commit 85b7df59d4
2 changed files with 31 additions and 6 deletions

View File

@ -4,12 +4,16 @@
<title>Inferencium Network</title> <title>Inferencium Network</title>
<link rel="stylesheet" href=infnet.css> <link rel="stylesheet" href=infnet.css>
</head> </head>
<body> <div class="sidebar">
<h1>Inferencium Network</h1> <div>Inferencium Network</div><br>
<br> <br>
<p>- <a href="about.html">About</a></p> <div href="about.html">About</div>
<p>- <a href="contact.html">Contact</a></p> <div>Contact</div>
<p>- <a href="blog.html">Blog</a></p> <div>Blog</div>
<p>- <a href="source.html">Source</a></p> <div>Source</div>
</div>
<div class="body-text">
</div>
<body>
</body> </body>
</html> </html>

View File

@ -1,3 +1,24 @@
.sidebar {
height: 100%;
width: 150px;
position: absolute;
left: 0;
top: 0;
padding-top: 40px;
background-color: lightgray;
}
.sidebar div {
padding: 8px;
font-size: 24px;
display: block;
}
.body-text {
margin-left: 150px;
font-size: 18px;
}
body { body {
font-family: Roboto, sans-serif; font-family: Roboto, sans-serif;
background-color: #262626; background-color: #262626;