2023-03-11 21:45:14 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2023-03-11 23:42:26 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2023-03-11 21:45:14 +00:00
|
|
|
<title>MakerLab Murnau Logo generator</title>
|
|
|
|
<link rel="stylesheet" href="pico.min.css">
|
|
|
|
|
|
|
|
<style>
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
.dark-only {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
.light-only {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<main class="container">
|
|
|
|
<nav>
|
|
|
|
<ul>
|
2023-03-15 09:57:37 +00:00
|
|
|
<li>
|
2023-04-20 15:08:55 +00:00
|
|
|
<img src="logo?variant=DarkText" style="height: 50px" class="light-only" />
|
|
|
|
<img src="logo?variant=LightText" style="height: 50px" class="dark-only" />
|
|
|
|
logo generator
|
2023-03-15 09:57:37 +00:00
|
|
|
</li>
|
2023-03-11 21:45:14 +00:00
|
|
|
</ul>
|
|
|
|
<ul>
|
|
|
|
<li><a href="https://makerlab-murnau.de">MakerLab Website</a></li>
|
2023-03-11 23:04:47 +00:00
|
|
|
<li><a href="https://git.makerlab-murnau.de/MakerLab/logo-generator">Source code</a></li>
|
2023-03-11 21:45:14 +00:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<p>You can use this website to generate diffrent variation of the logo of the MakerLab Murnau e.V.</p>
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary>Full-size Logo</summary>
|
|
|
|
|
|
|
|
<form action="logo" method="get">
|
|
|
|
<fieldset>
|
2023-04-20 15:08:55 +00:00
|
|
|
<label for="logo_variant">
|
|
|
|
Variant
|
2023-03-15 09:57:37 +00:00
|
|
|
</label>
|
2023-04-20 15:08:55 +00:00
|
|
|
<select id="logo_variant" value="DarkText">
|
|
|
|
<option value="DarkText" selected>dark text</option>
|
|
|
|
<option value="LightText">light text</option>
|
|
|
|
<option value="NoText">no text</option>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
<label for="logo_orientation">
|
|
|
|
Orientation
|
2023-03-11 21:45:14 +00:00
|
|
|
</label>
|
2023-04-20 15:08:55 +00:00
|
|
|
|
|
|
|
<select id="logo_orientation" value="Landscape">
|
|
|
|
<option value="Landscape" selected>landscape</option>
|
|
|
|
<option value="Portrait" selected>portrait</option>
|
|
|
|
</select>
|
2023-03-11 21:45:14 +00:00
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<div class="grid">
|
|
|
|
<button type="submit">Generate</button>
|
|
|
|
<button type="reset">Reset</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</details>
|
|
|
|
|
|
|
|
<details>
|
|
|
|
<summary>Favicon</summary>
|
|
|
|
|
|
|
|
<form action="favicon.ico" method="get">
|
|
|
|
<button type="submit">Generate</button>
|
|
|
|
</form>
|
|
|
|
</details>
|
|
|
|
</main>
|
|
|
|
</body>
|