Restructure
Dieser Commit ist enthalten in:
Chaoscaot 2022-08-02 20:33:33 +02:00
Ursprung 782c23247d
Commit 208fa71af9
7 geänderte Dateien mit 45 neuen und 6 gelöschten Zeilen

0
.htaccess Normale Datei
Datei anzeigen

Datei anzeigen

@ -20,21 +20,34 @@
<!doctype html> <!doctype html>
<html lang="en"> <html lang="en">
<head> <head>
<base href="BauSystem-Features">
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" <meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge"> <meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Bausystem Features</title> <title>Bausystem Features - SteamWar.de/docs</title>
<link rel="stylesheet" href="index.css"> <link rel="stylesheet" href="/index.css">
<link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<script src="app.js" defer></script> <script src="https://kit.fontawesome.com/df996a11da.js" crossorigin="anonymous"></script>
<script src="/app.js" defer></script>
</head> </head>
<body> <body>
<header>
<a id="back-button" href="#">
<i class="fa-solid fa-chevron-left"></i>
<span>
SteamWar.de/docs
</span>
</a>
</header>
<div class="center"> <div class="center">
<div id="content"> <div id="content">
<h1>Bausystem Features</h1> <h1>Bausystem Features</h1>
@ -131,14 +144,14 @@
<h3>Bauhilfen</h3> <h3>Bauhilfen</h3>
<div id="smartplace" class="feature"> <div id="smartplace" class="feature">
<h4>Smartplace</h4> <h4>Smartplace</h4>
<img src="Smartplace-1080P.png" alt="" loading="lazy"><br> <img src="/img/Smartplace-1080P.png" alt="" loading="lazy"><br>
<p> <p>
Smartplace kann mit <code>/smartplace</code> aktiviert und deaktiviert werden. Dies wird für dich auf allen Baus Smartplace kann mit <code>/smartplace</code> aktiviert und deaktiviert werden. Dies wird für dich auf allen Baus
umgestellt. Wenn du nun rotierbare Blöcke wie Pistons, Observer und andere platzieren willst, werden diese wenn man umgestellt. Wenn du nun rotierbare Blöcke wie Pistons, Observer und andere platzieren willst, werden diese wenn man
gleichzeitig sneaked andersrum platziert. Wenn du Blöcke mit Inventar an selbige Blöcke platzierst brauchst du gleichzeitig sneaked andersrum platziert. Wenn du Blöcke mit Inventar an selbige Blöcke platzierst brauchst du
dafür kein sneaken mehr. dafür kein sneaken mehr.
</p> </p>
<a class="btn">Zum Code</a> <a class="btn"><i class="fa-solid fa-code"></i> Zum Code</a>
</div> </div>
<h3>TNT Handling</h3> <h3>TNT Handling</h3>

0
deploy.sh Normale Datei
Datei anzeigen

Datei anzeigen

Vorher

Breite:  |  Höhe:  |  Größe: 372 KiB

Nachher

Breite:  |  Höhe:  |  Größe: 372 KiB

Datei anzeigen

Vorher

Breite:  |  Höhe:  |  Größe: 1.1 MiB

Nachher

Breite:  |  Höhe:  |  Größe: 1.1 MiB

Datei anzeigen

@ -69,6 +69,8 @@ code {
body { body {
font-family: 'Roboto', sans-serif; font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
} }
.center { .center {
@ -104,4 +106,28 @@ a {
-khtml-user-select: none; -khtml-user-select: none;
-moz-user-select: none; -moz-user-select: none;
-ms-user-select: none; -ms-user-select: none;
} }
header {
background: black;
color: white;
height: fit-content;
width: 100%;
display: flex;
}
#back-button {
margin-left: 15px;
display: flex;
align-items: center;
justify-content: center;
height: 100%;
color: white;
font-size: 2.5vh;
user-select: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}