Commits vergleichen
4 Commits
Autor | SHA1 | Datum | |
---|---|---|---|
|
513dfee6ca | ||
|
cf597957bc | ||
|
b760683101 | ||
|
341f2b56d5 |
@ -37,7 +37,7 @@
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<a id="back-button" href="#">
|
||||
<a id="back-button" href="..">
|
||||
<i class="fa-solid fa-chevron-left"></i>
|
||||
<span>
|
||||
SteamWar.de/docs
|
||||
@ -53,7 +53,7 @@
|
||||
<details>
|
||||
<summary><h4>Regionen</h4></summary>
|
||||
<ul>
|
||||
<li>TNT</li>
|
||||
<li><a href="#tnt">TNT</a></li>
|
||||
<li>Fire</li>
|
||||
<li>Freeze</li>
|
||||
<li>Testblock</li>
|
||||
@ -139,6 +139,15 @@
|
||||
</details>
|
||||
|
||||
<br>
|
||||
<h3>Regionen</h3>
|
||||
<div id="tnt">
|
||||
<h4>TNT</h4>
|
||||
<p>
|
||||
Mit <code>/tnt</code> kann der Blockschaden von TNT reguliert werden. Dabei wechselt er zwischen den zwei Einstellungen „aus“ und „nur außerhalb
|
||||
Baurahmen“ bei welchem TNT nur außerhalb des Baurahmens Blockschaden verursacht. Mit <code>/tnt</code> on kannst du den Blockschaden in der
|
||||
ganzen Region (also auch im Baurahmen) erlauben. Welcher Modus gerade aktiv ist, siehst du rechts in der Sidebar auf deinem Bau.
|
||||
</p>
|
||||
</div>
|
||||
<h3>Bauhilfen</h3>
|
||||
<div id="smartplace">
|
||||
<h4>Smartplace</h4>
|
||||
|
22
home.css
Normale Datei
22
home.css
Normale Datei
@ -0,0 +1,22 @@
|
||||
nav {
|
||||
margin-top: 1rem;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, 32rem);
|
||||
gap: 2rem;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
nav > * {
|
||||
aspect-ratio: 1;
|
||||
border: gray .15rem dashed;
|
||||
border-radius: .5rem;
|
||||
text-align: center;
|
||||
transition: transform .3s ease-in-out;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
nav > *:hover {
|
||||
transform: scale(1.01);
|
||||
}
|
@ -85,7 +85,7 @@ img {
|
||||
}
|
||||
|
||||
#content {
|
||||
width: clamp(60%, 60rem, 100%);
|
||||
width: clamp(60%, 60rem, 97%);
|
||||
}
|
||||
|
||||
a {
|
||||
|
29
index.html
29
index.html
@ -5,9 +5,36 @@
|
||||
<meta name="viewport"
|
||||
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">
|
||||
<title>Document</title>
|
||||
<title>SteamWar.de/docs</title>
|
||||
<link rel="stylesheet" href="index.css">
|
||||
<link rel="stylesheet" href="home.css">
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
|
||||
|
||||
<script src="https://kit.fontawesome.com/df996a11da.js" crossorigin="anonymous"></script>
|
||||
<script src="app.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<div id="back-button">
|
||||
<span>SteamWar.de/docs</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<nav>
|
||||
<a href="bausystem">
|
||||
<h1>BauSystem</h1>
|
||||
<p>Alle Funktionen die auf dem SteamWar.de Bauserver zur verfügung stehen.</p>
|
||||
<em>Work in progress</em>
|
||||
</a>
|
||||
<div>
|
||||
<h1>SchematicSystem</h1>
|
||||
<p>Die haupt Schematic Verwaltungssoftware von SteamWar</p>
|
||||
<em>Geplannt</em>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
</body>
|
||||
</html>
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren