Changed form styling.
This commit is contained in:
parent
19c59d2eb6
commit
f5a8bcdec3
@ -42,12 +42,12 @@
|
|||||||
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" method="post">
|
<form action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" method="post">
|
||||||
Subject:
|
Subject:
|
||||||
<br>
|
<br>
|
||||||
<input type="text" name="subject" value="<?php echo $title;?>">
|
<input class="form-text-small" type="text" name="subject" value="<?php echo $title;?>">
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
Details:
|
Details:
|
||||||
<br>
|
<br>
|
||||||
<textarea name="detail" rows="5" cols="40"><?php echo $detail;?></textarea>
|
<textarea class="form-text-large" name="detail" rows="5" cols="40"><?php echo $detail;?></textarea>
|
||||||
<br>
|
<br>
|
||||||
On submission of this form, your browsers User Agent string will be
|
On submission of this form, your browsers User Agent string will be
|
||||||
collected alongside the information you provide above and will be
|
collected alongside the information you provide above and will be
|
||||||
|
@ -23,6 +23,22 @@ body {
|
|||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-text-small {
|
||||||
|
text-align: center;
|
||||||
|
border: black;
|
||||||
|
border-radius: 20px;
|
||||||
|
padding: 10px;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-text-large {
|
||||||
|
text-align: left;
|
||||||
|
border: black;
|
||||||
|
border-radius: 20px;
|
||||||
|
padding: 5px;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
.lookup-button {
|
.lookup-button {
|
||||||
background-color: #3c78d8;
|
background-color: #3c78d8;
|
||||||
color: #f6f5f4;
|
color: #f6f5f4;
|
||||||
|
Reference in New Issue
Block a user