css
This commit is contained in:
@ -1,10 +1,15 @@
|
||||
<?php
|
||||
error_reporting(E_ALL);
|
||||
ini_set("display_errors", 1);
|
||||
|
||||
require __DIR__.'/classes/lib.php';
|
||||
|
||||
$now = new DateTime();
|
||||
var_dump($now);
|
||||
$expire = new DateTime();
|
||||
$expire->add(new DateInterval('PT' . $G_pwtoken_time_expire . 'M'));
|
||||
var_dump($expire);
|
||||
|
||||
var_dump($_SERVER);
|
||||
|
||||
|
||||
echo $_SERVER['HTTP_HOST'];
|
||||
echo $_SERVER['PHP_SELF'];
|
||||
?>
|
||||
@ -1,7 +1,7 @@
|
||||
.App {
|
||||
text-align: center;
|
||||
background-color: rgb(243, 97, 12);
|
||||
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.neben
|
||||
|
||||
@ -4,6 +4,7 @@ const ImpressTxt = () =>
|
||||
{
|
||||
return (
|
||||
<>
|
||||
<div className='mehrspaltig'>
|
||||
<p><span className="underline">Angaben gem. § 5 TMG:</span></p>
|
||||
<p> </p>
|
||||
<p>Dipl.-Ing. Peter Hoppe</p>
|
||||
@ -62,6 +63,7 @@ const ImpressTxt = () =>
|
||||
Inhalte unverzüglich entfernen.</p>
|
||||
<p>Dieses <a href="http://www.jurarat.de/muster-impressum">Impressum</a> wurde freundlicherweise von www.jurarat.de zur
|
||||
Verfügung gestellt.</p>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
@ -2,3 +2,11 @@
|
||||
{
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.mehrspaltig
|
||||
{
|
||||
column-count: 2;
|
||||
column-gap: 10em;
|
||||
column-rule-style: double;
|
||||
height: 400vh;
|
||||
}
|
||||
Reference in New Issue
Block a user