Initial version of revised landing page

This commit is contained in:
Thomas Oltmann 2025-08-16 20:16:31 +02:00
commit 08f16661df
5 changed files with 169 additions and 0 deletions

BIN
www/assets/banner.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 210 KiB

BIN
www/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

84
www/assets/style.css Normal file
View file

@ -0,0 +1,84 @@
html {
color-scheme: light dark;
scroll-behavior: smooth;
}
body {
width: 100%;
padding: 0;
margin: 0;
font-family: Tahoma, Verdana, Arial, sans-serif;
font-size: 20px;
}
.header {
padding-top: 1em;
padding-bottom: 1em;
background-color: black;
position: sticky;
top: 0;
width: 100%;
display: inline-flex;
flex-direction: row;
}
.button {
flex-grow: 1;
width: 100%;
text-align: center;
}
.footer {
width: 100%;
text-align: center;
background-color: #111111;
padding-top: 1em;
padding-bottom: 2em;
}
.content {
max-width: 35em;
margin: auto;
line-height: 2;
padding-top: 4em;
padding-bottom: 4em;
padding-left: 2em;
padding-right: 2em;
text-align: justify;
text-justify: inter-word;
}
.banner {
width: 100%;
padding-top: 5em;
padding-bottom: 5em;
color: white;
text-align: center;
background-image: url("banner.jpg");
background-attachment: fixed;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.banner h1 {
text-shadow: 2px 2px #222222;
letter-spacing: 0.25em;
font-family: 'Courier New', monospace;
}
.banner h3 {
text-shadow: 1px 1px #222222;
}
h2 {
font-size: 50px;
line-height: 1;
}
.softpage {
display: block;
height: 80vh;
min-height: 10em;
padding-bottom: 4em;
}
.logo {
max-width: 1.2em;
max-height: 1.2em;
display: inline-block;
vertical-align: bottom;
}
.logo img {
width: 100%;
height: 100%;
}

32
www/impressum.html Normal file
View file

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Impressum</title>
<style>
html {
color-scheme: light dark;
scroll-behavior: smooth;
}
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
line-height: 1.5;
}
</style>
</head>
<body>
<h1>Impressum</h1>
<p>Angaben gemäß § 5 DDG</p>
<p>
Lennart Friebel<br>
Kapellenstraße 70<br>
76131 Karlsruhe<br>
</p>
<p>
<strong>Kontakt:</strong><br>
E-Mail: <span>kontakt<span>@<span>karlsruhe-os.de</span></span></span></br>
</p>
</body>
</html>

53
www/index.html Normal file
View file

@ -0,0 +1,53 @@
<!DOCTYPE html>
<html>
<head>
<title>Welcome to KarlOS!</title>
<link rel="stylesheet" href="assets/style.css"/>
</head>
<body>
<div class="header">
<div class="button">
<div class="logo">
<img src="assets/logo.png" alt="logo"/>
</div>
Karl<strong>OS</strong>
</div>
<div class="button">
<a href="#contact">Contact</a>
</div>
<div class="button">
<a href="/code/">Code</a>
</div>
</div>
<div class="banner">
<h1>Hobby OS Dev @ KIT</h1>
</div>
<div class="content">
<div class="softpage">
<h2>About us</h2>
We are a student group in Karlsruhe creating a hobbyist Operating System from scratch.
The current goal of the project is to develop a simple monolithic kernel for 64-bit Intel / AMD PCs,
which could serve as a platform for experimentation in the future.
</div>
<div class="softpage">
<a id="contact"></a>
<h2>Contact Us</h2>
<p>Angaben gemäß § 5 DDG</p>
<p>
Lennart Friebel<br>
Kapellenstraße 70<br>
76131 Karlsruhe<br>
</p>
<p>
<strong>Kontakt:</strong><br>
E-Mail: <span>kontakt<span>@<span>karlsruhe-os.de</span></span></span></br>
</p>
</div>
</div>
<div class="footer">
Copyright 2024-2025
</div>
</body>
</html>