This commit is contained in:
zayd 2024-11-11 22:40:16 -05:00
commit 1179bb051b
11 changed files with 99 additions and 0 deletions

0
assets/#main.css# Normal file
View file

57
assets/css/main.css Normal file
View file

@ -0,0 +1,57 @@
/* Fonts */
@font-face {
font-family: Super Pixel;
src: url('/assets/fonts/super_pixel.ttf');
}
@font-face {
font-family: FiraCode Bold;
src: url('/assets/fonts/fira_code_v6.2/woff2/FiraCode-Bold.woff2');
}
@font-face {
font-family: FiraCode;
src: url('/assets/fonts/fira_code_v6.2/woff2/FiraCode-Regular.woff2');
}
.navbar {
list-style-type: none;
margin: 0;
padding: 0;
}
.navbar li {
font-family: FiraCode Bold;
display: inline;
}
.navbar li a {
text-decoration: none;
font-size: 20px;
color: #bb53f3;
}
.navbar li h1 {
display: inline;
}
.navbar li h1 a {
color: #bb53f3;
font-size: 30px;
font-family: Super Pixel;
display: inline;
}
.navbar a:hover {
color: white;
}
body {
background-color: #000000;
}
.main {
color: white;
margin-left: 4%;
font-family: FiraCode;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

22
assets/main.css Normal file
View file

@ -0,0 +1,22 @@
@font-face {
font-family: Super Pixel;
src: url(/assets/fonts/super_pixel.ttf)
}
* {
font-family: Super Pixel;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
display: inline;
}
li h1 {
display: inline;
}

20
index.html Normal file
View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/assets/css/main.css">
<title>Zaydsite NOW!</title>
</head>
<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>
</ul>
<div class="main">
<h2>Welcome!</h2>
</div>
</body>
</html>