2023-04-26 13:17:21 +02:00

262 lines
4.7 KiB
PHP
Executable File

<?php
require_once("../../../config/datenbankanbindung.php"); // f&uuml;gt die Datenbankanbindung ein: Sys:\php\includes\kurs\datenbankanbindung.php
$user_admin=$_COOKIE["user_admin"];
#$db = dbconnect();
#$result = $db->query( "SELECT css FROM stylesheet WHERE user ='$user_admin'")
# or die ("Cannot execute query");
#while ($row = $result->fetch_array()){
# echo "$row[css]\n";
#}
echo"
font.hd { /* Überschrifteinstellungen */
font-family : Verdana,Arial,Helvetica,sans-serif;
font-size : 17px;
font-weight : bold;
color : #002276;
}
.sh { /* Subheader */
font-weight : normal;
font-size : 12px;
color : rgb(101, 101, 101);
font-family : Arial,Helvetica,sans-serif;
}
ul.li { /* Aufzählungen */
font-weight : normal;
line-height : 150%;
text-align : justify;
list-style-type : square;
}
ul { /* Aufzählungen */
font-weight : normal;
line-height : 150%;
padding-left : 25px;
text-align : justify;
margin-left : 15px;
padding-left : 15px;
}
ol { /* Aufzählungen */
font-weight : normal;
line-height : 150%;
padding-left : 25px;
text-align : justify;
}
/*
table {
font-family : verdana, arial;
font-size : 9pt;
color : #000000;
line-height : 150%;
text-align : justify
}
*/
.formdesc {
padding-left : 10px;
width : 33%;
color : rgb(255, 255, 255);
background-color : rgb(146, 155, 171);
font-weight : bold;
}
.login {
background-color : #f1f2f6;
}
a {
font-family : verdana, arial;
font-weight : normal;
color : #000066;
}
.td2 {
font-family : verdana, arial;
font-size : 9pt;
color : #000000;
line-height : 150%;
text-align : justify
}
.farbe {
background-color : #6487DC;
}
.farbe_border {
border : 1px;
border-color : #6487DC;
border-style : solid;
}
body {
font-family : verdana, arial;
font-size : 9pt;
color : #000000;
}
td {
font-family : verdana, arial;
font-size : 9pt;
color : #000000;
}
h1 {
font-family : verdana, arial;
font-size : 8pt;
font-weight : bold;
}
.uberschrift {
font-family : verdana, arial;
font-size : 12pt;
font-weight : bold;
color : #006699;
}
.bemerkung {
font-family : verdana, arial;
font-size : 8pt;
font-weight : bold;
color : #FF0000;
text-transform : uppercase; /* Großbuchstaben */
}
.textfarbe { /* Botschaft, Ausführungen, Zusammenfassung, Kontext */
color : #6487DC;
font-weight : bold;
}
.contentfarbe { /* Hintergrundsfarbe in Tabellen bei Inhalten */
background-color : #DEDEDE;
}
.titel { /* Kopfframe */
font-weight : bold;
text-decoration : none;
font-family : verdana, arial;
font-size : 16pt;
color : #FFFFFF;
}
.footer { /* Fußzeile (Copyright) */
text-decoration : none;
font-family : verdana, arial;
font-size : 8pt;
}
.nav_link { /* Hyperlinks in der Navigation */
text-decoration : none;
font-family : verdana, arial;
font-size : 8pt;
height : 13pt;
}
.nav_head { /* Überschriften in der Navigation */
font-weight : bold;
text-decoration : none;
font-family : verdana, arial;
font-size : 9pt;
}
.btn_red
{
background: #d93434;
background-image: linear-gradient(tobottom,#d93434,#b82b2b);
border-radius: 28px;
color: #fff;
font-family: Arial;
font-size: 20px;
moz-border-radius: 28;
padding: 10px 20px;
text-decoration: none;
webkit-border-radius: 28;
}
.btn_red:hover
{
background: #b03030;
text-decoration: none;
}
.btn_blue
{
background: #3498db;
border-radius: 28px;
color: #fff;
font-family: Arial;
font-size: 20px;
moz-border-radius: 28;
padding: 10px 20px;
text-decoration: none;
webkit-border-radius: 28;
}
.btn_blue:hover
{
background: #2c7bb0;
text-decoration: none;
}
.btn_green
{
background: #06ba06;
border-radius: 28px;
color: #fff;
font-family: Arial;
font-size: 20px;
moz-border-radius: 28;
padding: 10px 20px;
text-decoration: none;
webkit-border-radius: 28;
}
.btn_green_klein
{
background: #06ba06;
border-radius: 14px;
color: #fff;
font-family: Arial;
font-size: 10px;
moz-border-radius: 14;
padding: 5px 10px;
text-decoration: none;
webkit-border-radius: 14;
}
.btn_green:hover
{
background: #0b960b;
text-decoration: none;
}
.aformlink{
text-decoration: none;
border-bottom: 1px dotted red;
background-image: none;
padding-left: 0;
}
";
?>