This commit is contained in:
parent
5ca0021533
commit
43b0b1d7a7
7 changed files with 139 additions and 43 deletions
|
@ -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">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue