Feat: add new logo
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Dorian Zedler 2023-04-20 17:08:55 +02:00
parent 5ca0021533
commit 43b0b1d7a7
Signed by: dozedler
GPG key ID: 989DE36109AFA354
7 changed files with 139 additions and 43 deletions

View file

@ -27,9 +27,9 @@
<nav>
<ul>
<li>
<img src="logo?dark_mode=false&text=false" style="height: 50px" class="light-only" />
<img src="logo?dark_mode=true&text=false" style="height: 50px" class="dark-only" />
<strong>MakerLab Murnau Logo generator</strong>
<img src="logo?variant=DarkText" style="height: 50px" class="light-only" />
<img src="logo?variant=LightText" style="height: 50px" class="dark-only" />
logo generator
</li>
</ul>
<ul>
@ -45,20 +45,24 @@
<form action="logo" method="get">
<fieldset>
<div class="grid">
<label for="logo_background_color">
Background color
</label>
<input type="color" id="logo_background_color" name="background_color" value="">
</div>
<label for="logo_text">
<input type="checkbox" id="logo_text" name="text" role="switch">
Add text
<label for="logo_variant">
Variant
</label>
<label for="logo_dark_mode">
<input type="checkbox" id="logo_dark_mode" name="dark_mode" role="switch">
Dark mode
<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
</label>
<select id="logo_orientation" value="Landscape">
<option value="Landscape" selected>landscape</option>
<option value="Portrait" selected>portrait</option>
</select>
</fieldset>
<div class="grid">