Compare commits

..

No commits in common. "753fbfbe76fdf5b6f9d4f18e9ba8aacc2749b265" and "118dc7357c6fa758965f4dd6355e85b089bae344" have entirely different histories.

4 changed files with 20 additions and 26 deletions

View File

@ -13,20 +13,18 @@
<?php require "./page-blocks/title-image.php";?> <?php require "./page-blocks/title-image.php";?>
<h2>Help</h2> <h2>Help</h2>
<span class="text-description"> <p>Just type in a three character CRS code or a TIPLOC into the text
<p>Just type in a three character CRS code or a TIPLOC into the text box and tap the Lookup button.</p>
box and tap the Lookup button.</p> <p>If you enter a TIPLOC, this will not be verified - if it is
<p>If you enter a TIPLOC, this will not be verified - if it is incorrect or unavailable on Tiger, you will be redirected to a
incorrect or unavailable on Tiger, you will be redirected to a blank board. CRS codes will be verified against a lookup file
blank board. CRS codes will be verified against a lookup file before redirecting.</p>
before redirecting.</p> <p>Some stations are not on Tiger and these stations are not supported
<p>Some stations are not on Tiger and these stations are not supported here either. Notably TfW and Chiltern stations that border the GWR
here either. Notably TfW and Chiltern stations that border the GWR network. Most GWR Central served stations are now available to
network. Most GWR Central served stations are now available to lookup.</p>
lookup.</p> <p>I am working on a new version that will provide data for every
<p>I am working on a new version that will provide data for every station in the National Rail database.</p>
station in the National Rail database.</p>
</span>
<!-- Footer --> <!-- Footer -->
<?php include './page-blocks/footer.php';?> <?php include './page-blocks/footer.php';?>

View File

@ -38,10 +38,9 @@
<br> <br>
<br> <br>
<span class="text-description">
<p>This is an Alpha release and is under testing.</p> <p>This is an Alpha release and is under testing.</p>
<p>Some features may not work and some stations may not be available.</p> <p>Some features may not work and some stations may not be available.</p>
</span>
<!-- Footer --> <!-- Footer -->
<?php include "./page-blocks/footer.php" ?> <?php include "./page-blocks/footer.php" ?>

View File

@ -54,7 +54,7 @@
<br> <br>
<br> <br>
<br> <br>
<span class="text-description"> <span class="form-description">
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
posted to the <a class="inlinelink" href="https://git.fjla.uk/fred.boniface/athena.fb-infra.uk/issues"> posted to the <a class="inlinelink" href="https://git.fjla.uk/fred.boniface/athena.fb-infra.uk/issues">
@ -62,7 +62,7 @@
</span> </span>
<br> <br>
<br> <br>
<span class="text-description"> <span class="form-description">
Your user agent is: Your user agent is:
<br> <br>
<?php echo $ua_str; ?> <?php echo $ua_str; ?>

View File

@ -49,16 +49,13 @@ body {
margin-bottom: 4px; margin-bottom: 4px;
} }
.text-description { .form-description {
color: #0280e5; color: #0280e5;
width: 80%;
padding-top: 5px; padding-top: 5px;
padding-bottom: 5px; padding-bottom: 5px;
} }
.text-description p {
width: 80%;
}
@media only screen and (min-width: 768px) { @media only screen and (min-width: 768px) {
.form-text-small { .form-text-small {
width: 50%; width: 50%;
@ -68,7 +65,7 @@ body {
width: 50%; width: 50%;
} }
.text-description p { .form-description {
width: 50%; width: 50%;
} }
} }