1
0

new example page; funny categorie; wrong link von command-guide; a lot of new pictures

This commit is contained in:
Alexander 2024-01-03 21:30:53 +01:00
parent 4e106dc92e
commit afc5e03684
47 changed files with 539 additions and 4 deletions

57
Example-site/index.html Normal file
View File

@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Br0tcraft</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="header-container">
</div>
<div class="Background-Leiste"></div>
<div class="Leiste"></div>
<div class="container">
<a class="menu-link-home" href="">BR0TCRAFT</a>
<div class="mobile-menu-icon" onclick="toggleMenu()">
<div class="hamburger-icon"></div>
<div class="hamburger-icon"></div>
<div class="hamburger-icon"></div>
</div>
<div class="menu-links">
<a class="menu-link" href="">Spiele</a>
<a class="menu-link" href="">Tutorials</a>
<a class="menu-link" href="">Extensions</a>
<a class="menu-link" href="">Kontakt</a>
<a class="menu-link" href="">funny-Seiten</a>
</div>
</div>
<div class="mobile-menu" onclick="toggleMenu()">
<a class="menu-link-home" href="">BR0TCRAFT</a>
<br><br><br>
<a class="menu-link-mobile" href="">Spiele</a>
<a class="menu-link-mobile" href="">Tutorials</a>
<a class="menu-link-mobile" href="">Turbowarp-Extensions</a>
<a class="menu-link-mobile" href="">Kontakt</a>
<a class="menu-link-mobile" href="">funny-Seiten</a>
</div>
<h1 class="headline">Example</h1>
Dies wird genutzt für weitere Websiten als Template
<script>
function toggleMenu() {
var menuLinks = document.querySelector(".menu-links");
var mobileMenu = document.querySelector(".mobile-menu");
var body = document.body;
menuLinks.classList.toggle("show");
mobileMenu.classList.toggle("show");
}
</script>
</body>
</html>

172
Example-site/style.css Normal file
View File

@ -0,0 +1,172 @@
@font-face {
font-family: "Roboto";
src: url("/fonts/Roboto/Roboto-Regular.ttf");
}
@font-face {
font-family: "Orbitron";
src: url("/fonts/Orbitron/Orbitron-Black.ttf");
}
body {
margin: 0;
font-family: "Orbitron";
background-color: white;
z-index: 0;
}
.Leiste {
top: 0px;
left: 0px;
width: 100%;
height: 7vw;
position: fixed;
background-color: rgb(77, 0, 0);
z-index: 0;
}
.Background-Leiste {
top: 0px;
left: 0px;
width: 100%;
height: 7vw;
object-fit: cover;
background-color: transparent;
}
.header-container {
top: 3vw;
position: relative;
width: 100%;
}
.container {
position: fixed;
right: 32px;
left: 10px;
top: 0px;
font-family: Orbitron;
font-size: 24px;
display: flex;
align-items: center;
justify-content: space-between;
}
.menu-link-home {
color: white;
text-decoration: none;
margin-left: 0px;
font-size: 6vw;
}
.menu-link {
font-size: 1.5vw;
color: white;
text-decoration: none;
margin-left: 16px;
}
.menu-link:hover {
text-decoration: underline;
}
.headline {
text-align: center;
color: rgb(0, 0, 0);
font-size: 4vw;
text-shadow: 5px 5px 3px rgba(5, 0, 0, 0.26);
}
.mobile-menu-icon {
display: none; /* Standardmäßig ausblenden */
cursor: pointer;
position: fixed;
top: 0.5vw;
right: 20px;
}
.hamburger-icon {
width: 30px;
height: 3px;
background-color: white;
margin: 6px 0;
}
.menu-links {
display: flex;
align-items: center;
justify-content: flex-end; /* Rechts ausrichten */
}
.menu-links.show {
display: flex;
}
.menu {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #333; /* Hintergrundfarbe des Menüs */
z-index: 1000;
}
.menu-link-mobile {
color: white;
padding: 20px;
text-align: center;
text-decoration: none;
display: block;
font-size: 250%;
margin: 20px; /* Abstand zwischen den Links hinzufügen */
}
.mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: transparent;
z-index: 1000;
}
.Inhalt {
height: 100%;
width: 100%;
top: 10vw;
left: 0px;
}
@media screen and (max-width: 937px) {
.mobile-menu-icon {
display: block; /* Bei kleinen Bildschirmen anzeigen */
}
.hamburger-icon {
display: block;
}
.menu-links {
display: none;
flex-direction: column;
position: absolute;
top: 80px;
right: 0; /* Rechts ausrichten */
background-color: #333;
width: 100%;
justify-content: flex-start; /* Links oben ausrichten */
}
.menu-links.show {
display: flex;
}
.mobile-menu.show {
display: block;
background-color: rgb(104, 0, 0);
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 84 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

View File

@ -0,0 +1,102 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Br0tcraft</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="header-container">
</div>
<div class="Background-Leiste"></div>
<div class="Leiste"></div>
<div class="container">
<a class="menu-link-home" href="">BR0TCRAFT</a>
<div class="mobile-menu-icon" onclick="toggleMenu()">
<div class="hamburger-icon"></div>
<div class="hamburger-icon"></div>
<div class="hamburger-icon"></div>
</div>
<div class="menu-links">
<a class="menu-link" href="">Spiele</a>
<a class="menu-link" href="">Tutorials</a>
<a class="menu-link" href="">Extensions</a>
<a class="menu-link" href="">Kontakt</a>
<a class="menu-link" href="">funny-Seiten</a>
</div>
</div>
<div class="mobile-menu" onclick="toggleMenu()">
<a class="menu-link-home" href="">BR0TCRAFT</a>
<br><br><br>
<a class="menu-link-mobile" href="">Spiele</a>
<a class="menu-link-mobile" href="">Tutorials</a>
<a class="menu-link-mobile" href="">Turbowarp-Extensions</a>
<a class="menu-link-mobile" href="">Kontakt</a>
<a class="menu-link-mobile" href="">funny-Seiten</a>
</div>
<h1 class="kleine-Überschrift">Die bisher größte</h1>
<h1 class="headline">Plankton-Gallery</h1>
<div class="Planktons"></div>
<div class="Bilder-Block">
<a href=""><img class="Plankton-Image"src="Planktons/1 version.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Abschluss type.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Auto.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Bahnmitarbeiter.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Bauer.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Bello.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Ein freundlicher Anton.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/ein sp<73>ter Zug.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Ein Vielleicht nicht Gesunder Pilz.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Einkaufender Plankton.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Er ist Doktor.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Eugen.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Fake F<>hrerschein.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Feridaf.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Fliege.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Gro<72>mutter Plankton.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Hannes.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Heizungsmensch.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Irgendein <20>lterer Heer.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Kassentyp.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Keine Ahnung.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Klein Plankton.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Kroko.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/kurvabobba.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Mama Plankton.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Medizin Martien.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Nachbar.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/O2 Kundenserviece.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Plankton am Kartenspielen.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Plankton am Schnitzen.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Plankton an der Kasse.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Plankton.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Polizist.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Telefonierend.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Telekomheini.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Typ am Schreiben.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Typ in Badewanne.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Ulli.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/unsicherer Torsten.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/verr<72>ckter Bauarbeiter.png"></a>
<a href=""><img class="Plankton-Image"src="Planktons/Zu viele Yum Yum Nudeln.png"></a>
</div>
<script>
function toggleMenu() {
var menuLinks = document.querySelector(".menu-links");
var mobileMenu = document.querySelector(".mobile-menu");
var body = document.body;
menuLinks.classList.toggle("show");
mobileMenu.classList.toggle("show");
}
</script>
</body>
</html>

View File

@ -0,0 +1,181 @@
@font-face {
font-family: "Roboto";
src: url("/fonts/Roboto/Roboto-Regular.ttf");
}
@font-face {
font-family: "Orbitron";
src: url("/fonts/Orbitron/Orbitron-Black.ttf");
}
body {
margin: 0;
font-family: "Orbitron";
background-color: white;
z-index: 0;
}
.Leiste {
top: 0px;
left: 0px;
width: 100%;
height: 7vw;
position: fixed;
background-color: rgb(77, 0, 0);
z-index: 0;
}
.Background-Leiste {
top: 0px;
left: 0px;
width: 100%;
height: 7vw;
object-fit: cover;
background-color: transparent;
}
.header-container {
top: 3vw;
position: relative;
width: 100%;
}
.container {
position: fixed;
right: 32px;
left: 10px;
top: 0px;
font-family: Orbitron;
font-size: 24px;
display: flex;
align-items: center;
justify-content: space-between;
}
.menu-link-home {
color: white;
text-decoration: none;
margin-left: 0px;
font-size: 6vw;
}
.menu-link {
font-size: 1.5vw;
color: white;
text-decoration: none;
margin-left: 16px;
}
.menu-link:hover {
text-decoration: underline;
}
.headline {
text-align: center;
color: rgb(0, 0, 0);
font-size: 4vw;
text-shadow: 5px 5px 3px rgba(5, 0, 0, 0.26);
}
.mobile-menu-icon {
display: none; /* Standardmäßig ausblenden */
cursor: pointer;
position: fixed;
top: 0.5vw;
right: 20px;
}
.hamburger-icon {
width: 30px;
height: 3px;
background-color: white;
margin: 6px 0;
}
.menu-links {
display: flex;
align-items: center;
justify-content: flex-end; /* Rechts ausrichten */
}
.menu-links.show {
display: flex;
}
.menu {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #333; /* Hintergrundfarbe des Menüs */
z-index: 1000;
}
.menu-link-mobile {
color: white;
padding: 20px;
text-align: center;
text-decoration: none;
display: block;
font-size: 250%;
margin: 20px; /* Abstand zwischen den Links hinzufügen */
}
.mobile-menu {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: transparent;
z-index: 1000;
}
.Inhalt {
height: 100%;
width: 100%;
top: 10vw;
left: 0px;
}
.kleine-Überschrift {
text-align: center;
font-size: 2vw;
}
.Bilder-Block {
display: block;
}
@media screen and (max-width: 937px) {
.mobile-menu-icon {
display: block; /* Bei kleinen Bildschirmen anzeigen */
}
.hamburger-icon {
display: block;
}
.menu-links {
display: none;
flex-direction: column;
position: absolute;
top: 80px;
right: 0; /* Rechts ausrichten */
background-color: #333;
width: 100%;
justify-content: flex-start; /* Links oben ausrichten */
}
.menu-links.show {
display: flex;
}
.mobile-menu.show {
display: block;
background-color: rgb(104, 0, 0);
}
}

View File

@ -11,6 +11,7 @@
<div class="header-container">
<img class="header-image" src="img/Background.png" />
</div>
<div class="Leiste"></div>
<div class="container">
<a class="menu-link-home" href="">BR0TCRAFT</a>
<div class="mobile-menu-icon" onclick="toggleMenu()">
@ -19,19 +20,21 @@
<div class="hamburger-icon"></div>
</div>
<div class="menu-links">
<!-- Gemeinsame Links für Desktop und mobile Ansichten -->
<a class="menu-link" href="">Spiele</a>
<a class="menu-link" href="">Tutorials</a>
<a class="menu-link" href="">Extensions</a>
<a class="menu-link" href="">Kontakt</a>
<a class="menu-link" href="">funny-Seiten</a>
</div>
</div>
<div class="mobile-menu" onclick="toggleMenu()">
<a class="menu-link-home" href="">BR0TCRAFT</a>
<br /><br /><br />
<a class="menu-link-mobile" href="">Spiele</a>
<a class="menu-link-mobile" href="">Tutorials</a>
<a class="menu-link-mobile" href="">Turbowarp-Extensions</a>
<a class="menu-link-mobile" href="">Kontakt</a>
<a class="menu-link-mobile" href="">funny-Seiten</a>
</div>
<h1 class="headline">Spiele</h1>
<div class="ElementListe">
@ -50,13 +53,14 @@
</div>
<h1 class="headline">Tutorials</h1>
<div class="ElementListe">
<a href=""
<a href="funny-Seiten/Plankton-Gallery/"
><img
src="img/Tutorials/Commandbuch-Handbuch.png "
class="KategorieLink"
/></a>
</div>
<h1 class="headline">Turbowarp-Extensions</h1>
<h1 class="headline">Funny Seiten von mir</h1>
<script>
function toggleMenu() {

View File

@ -12,24 +12,38 @@ body {
margin: 0;
font-family: "Orbitron";
background-color: white;
z-index: 0;
}
.Leiste {
top: 0px;
left: 0px;
width: 100%;
height: 7vw;
position: fixed;
background-color: rgb(77, 0, 0);
z-index: 0;
}
.header-container {
top: 3vw;
position: relative;
width: 100%;
}
.header-image {
top: 100px;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}
.container {
position: absolute;
position: fixed;
right: 32px;
left: 10px;
top: 16px;
top: 0px;
font-family: Orbitron;
font-size: 24px;
display: flex;
@ -42,9 +56,11 @@ body {
text-decoration: none;
margin-left: 0px;
font-size: 6vw;
}
.menu-link {
font-size: 1.5vw;
color: white;
text-decoration: none;
margin-left: 16px;
@ -64,6 +80,9 @@ body {
.mobile-menu-icon {
display: none; /* Standardmäßig ausblenden */
cursor: pointer;
position: fixed;
top: 0.5vw;
right: 20px;
}
.hamburger-icon {