this repo has no description

base work for projects page

+19
index.css
···
···
+
.intro {
+
align-items: center;
+
flex-direction: column;
+
display: flex;
+
+
& .pfp {
+
width: clamp(200px, 20%, 20%);
+
}
+
+
& h2 {
+
margin-top: 10px;
+
margin-bottom: 10px;
+
}
+
+
& p {
+
margin-top: 0px;
+
margin-bottom: 0px;
+
}
+
}
+7 -6
index.html
···
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nelind - Home Page</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans">
-
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="page-header">
<nav>
-
<a href="/" class="nav-item">Home</a>
-
<a href="/projects.html" class="nav-item">Projects</a>
</nav>
</header>
···
<p>Self Hosting • Rust • Web Dev</p>
<p>Fabric/Quilt • Spigot/Paper </p>
<p>Conlanging • Lingustics</p>
-
<div class="card" style="--card-colour: var(--colour-green)">
<header class="card-header">
<h3>Hi! I'm Nel</h3>
</header>
···
I'm also a massive lingustics nerd (yay autism) and do conlanging every now and then.
</p>
</div>
-
</div>
</div>
</main>
</body>
-
</html>
···
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nelind - Home Page</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans">
+
<link rel="stylesheet" href="/style.css">
+
<link rel="stylesheet" href="/index.css">
</head>
<body>
<header class="page-header">
<nav>
+
<a href="/" class="nav-item"><b>Home</b></a>
+
<a href="/projects/projects.html" class="nav-item">Projects</a>
</nav>
</header>
···
<p>Self Hosting • Rust • Web Dev</p>
<p>Fabric/Quilt • Spigot/Paper </p>
<p>Conlanging • Lingustics</p>
+
<section class="card" style="--card-colour: var(--colour-green)">
<header class="card-header">
<h3>Hi! I'm Nel</h3>
</header>
···
I'm also a massive lingustics nerd (yay autism) and do conlanging every now and then.
</p>
</div>
+
</section>
</div>
</main>
</body>
+
</html>
projects/projects.css

This is a binary file and will not be displayed.

+25
projects/projects.html
···
···
+
<!DOCTYPE html>
+
<html lang="en">
+
<head>
+
<meta charset="UTF-8">
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
+
<title>Nelind - Home Page</title>
+
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans">
+
<link rel="stylesheet" href="/style.css">
+
<link rel="stylesheet" href="projects.css">
+
</head>
+
<body>
+
+
<header class="page-header">
+
<nav>
+
<a href="/" class="nav-item">Home</a>
+
<a href="/projects/projects.html" class="nav-item"><b>Projects</b></a>
+
</nav>
+
</header>
+
+
<main class="page-main">
+
<h2>Work in progress &lt;3</h2>
+
</main>
+
+
</body>
+
</html>
+1 -17
style.css
···
}
.page-main {
-
width: clamp(280px, 75%, 50rem);
-
}
-
-
.intro {
align-items: center;
flex-direction: column;
display: flex;
-
& .pfp {
-
width: clamp(200px, 20%, 20%);
-
}
-
-
& h2 {
-
margin-top: 10px;
-
margin-bottom: 10px;
-
}
-
-
& p {
-
margin-top: 0px;
-
margin-bottom: 0px;
-
}
}
.card {
···
}
.page-main {
align-items: center;
flex-direction: column;
display: flex;
+
width: clamp(280px, 75%, 50rem);
}
.card {