Dieser Commit ist enthalten in:
Chaos 2022-08-07 20:56:08 +02:00
Ursprung 341f2b56d5
Commit b760683101
3 geänderte Dateien mit 51 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -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

22
home.css Normale Datei
Datei anzeigen

@ -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);
}

Datei anzeigen

@ -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>