added some stuff, will write the content soon
This commit is contained in:
parent
1179bb051b
commit
135fdb7a7e
2 changed files with 41 additions and 10 deletions
|
@ -14,10 +14,17 @@
|
|||
src: url('/assets/fonts/fira_code_v6.2/woff2/FiraCode-Regular.woff2');
|
||||
}
|
||||
|
||||
|
||||
body {
|
||||
margin-top: 2%;
|
||||
margin-left: 5%;
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.navbar li {
|
||||
|
@ -31,6 +38,11 @@
|
|||
color: #bb53f3;
|
||||
}
|
||||
|
||||
.navbar > li > a {
|
||||
margin-left: 4px;
|
||||
margin-right: 4px;
|
||||
}
|
||||
|
||||
.navbar li h1 {
|
||||
display: inline;
|
||||
}
|
||||
|
@ -46,12 +58,25 @@
|
|||
color: white;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
/* Main content */
|
||||
|
||||
.main {
|
||||
color: white;
|
||||
margin-left: 4%;
|
||||
font-family: FiraCode;
|
||||
width: 1000px;
|
||||
}
|
||||
|
||||
.main h2 {
|
||||
margin-top: 3px;
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.main p {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.main a {
|
||||
text-decoration: none;
|
||||
color: #418cf6;
|
||||
}
|
||||
|
|
14
index.html
14
index.html
|
@ -8,13 +8,19 @@
|
|||
<body>
|
||||
<ul class="navbar">
|
||||
<li><h1><a href="/">wanderlost</a></h1></li>
|
||||
<li><a href="/me">me</a></li>
|
||||
<li><a href="/links">links</a></li>
|
||||
<li><a href="/contact">contact</a></li>
|
||||
<li><a href="/blog">blog</a></li>
|
||||
<li><a href="/me.html">me</a></li>
|
||||
<li><a href="/links.html">links</a></li>
|
||||
<li><a href="/contact.html">contact</a></li>
|
||||
<li><a href="/blog.html">blog</a></li>
|
||||
</ul>
|
||||
<div class="main">
|
||||
<h2>Welcome!</h2>
|
||||
<p>
|
||||
This is my own home on the web. You probably know me as Zayd.
|
||||
Someday hosting will move to my own machines (and off the
|
||||
clearnet), but for now <a href="https://fsky.io">FSKY</a> is
|
||||
hosting my site.
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Add table
Reference in a new issue