first commit

This commit is contained in:
2026-09-17 15:17:22 +02:00
commit 03e6d1b6ee
8 changed files with 86 additions and 0 deletions
File diff suppressed because one or more lines are too long
+26
View File
@@ -0,0 +1,26 @@
.row.content {
height: 1500px;
}
.sidenav {
background-color: #f1f1f1;
height: 100%;
}
footer {
background-color: #555;
color: white;
padding: 15px;
}
@media screen and (max-width: 767px) {
.sidenav {
height: auto;
padding: 15px;
}
.row.content {height: auto;}
}
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+1
View File
@@ -0,0 +1 @@
Empty File for now
+1
View File
@@ -0,0 +1 @@
Empty File for now
+42
View File
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<script src="assets/js/jquery-4.0.0.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row content">
<div class="col-sm-3 sidenav">
<h4>TemplateName</h4>
<ul class="nav nav-pills nav-stacked">
<li><a href="index.html">Home / About me</a></li>
<li><a href="#">Nothing to show</a></li>
<li><a href="#">Nothing to show</a></li>
<li><a href="#">Nothing to show</a></li>
</ul><br>
</div>
<div class="col-sm-9">
<h4><small>About Me</small></h4>
<hr>
<h2>Passion about programming</h2>
<p>This section will later explain how and with which way i delevelop my passion for Software-Development. Stay tuned ans visit it later again.</p>
<br><br>
</div>
</div>
</div>
<footer class="container-fluid">
<p style="text-align: center;"> &copy; 2026 - Christian Braumann <a href="impress.html">Impress</a> <a href="privacy.html">Privacy policy</a> <a href="contact.html">Contact</a></p>
</footer>
</body>
</html>
+1
View File
@@ -0,0 +1 @@
Empty File for now