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