• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

[Anfänger] style.css erstellen und Buttons bearbeiten?

ertlflorian1

Neues Mitglied
Hi liebe Community,

habe ein simples Script geschrieben mit dem ich Befehle auf meinem Raspberry ausführe.
Jedoch sieht das ganze nicht ganz so schön aus ich möchte alle Tasten gleich Groß und etwas größer haben. :=)
Könnte mir jemand dabei eventuell helfen, bin durch Google schon darauf gekommen das ich dazu CSS verwenden muss, das HTML ja nur das grundlegende erstellt?!?


HTML:
<html>
<head>
<meta charset="UTF-8" />
</head>


<?php
if (isset($_POST['1']))
{
exec("sudo python /home/irscripts/led/1.py");
}
if (isset($_POST['2']))
{
exec("sudo python /home/irscripts/led/2.py");
}
if (isset($_POST['3']))
{
exec("sudo python /home/irscripts/led/3.py");
}
if (isset($_POST['4']))
{
exec("sudo python /home/irscripts/led/4.py");
}
if (isset($_POST['5']))
{
exec("sudo python /home/irscripts/led/5.py");
}
if (isset($_POST['6']))
{
exec("sudo python /home/irscripts/led/6.py");
}
if (isset($_POST['7']))
{
exec("sudo python /home/irscripts/led/7.py");
}
if (isset($_POST['8']))
{
exec("sudo python /home/irscripts/led/8.py");
}
if (isset($_POST['9']))
{
exec("sudo python /home/irscripts/led/9.py");
}
if (isset($_POST['10']))
{
exec("sudo python /home/irscripts/led/10.py");
}
if (isset($_POST['11']))
{
exec("sudo python /home/irscripts/led/11.py");
}if (isset($_POST['12']))
{
exec("sudo python /home/irscripts/led/12.py");
}
if (isset($_POST['13']))
{
exec("sudo python /home/irscripts/led/13.py");
}
if (isset($_POST['14']))
{
exec("sudo python /home/irscripts/led/14.py");
}
if (isset($_POST['15']))
{
exec("sudo python /home/irscripts/led/15.py");
}
if (isset($_POST['16']))
{
exec("sudo python /home/irscripts/led/16.py");
}
if (isset($_POST['17']))
{
exec("sudo python /home/irscripts/led/17.py");
}
if (isset($_POST['18']))
{
exec("sudo python /home/irscripts/led/18.py");
}
if (isset($_POST['19']))
{
exec("sudo python /home/irscripts/led/19.py");
}
if (isset($_POST['20']))
{
exec("sudo python /home/irscripts/led/20.py");
}

?>
<form method="post">
<button name="1">+</button>
<button name="2">-</button>
<button name="3">ON</button>
<button name="4">OFF</button>
<p>
<button name="5">ROT</button>
<button name="6">GRUEN</button>
<button name="7">BLAU</button>
<button name="8">WEISS</button>
<p>
<button name="9">ORANGE</button>
<button name="10">GELB</button>
<button name="11">BLAU</button>
<button name="12">VIOLETT</button>
<p>
<button name="13">J1</button>
<button name="14">J2</button>
<button name="15">F1</button>
<button name="16">F2</button>
<button name="17">M1</button>
<p>
<button name="18">M2</button>
<button name="19">M3</button>
<button name="20">M4</button>




</form>
</html>

Danke im voraus FLo
 
Zurück
Oben