css pour le login a sortir du fichier functions.inc.php
This commit is contained in:
parent
d04fec5dfc
commit
48a84c1244
75
htdocs/lib/login.css
Normal file
75
htdocs/lib/login.css
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
|
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
|
* $Id$
|
||||||
|
* $Source$
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-size:14px;
|
||||||
|
font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
|
||||||
|
background-color: #cac8c0;
|
||||||
|
margin-left: 30%;
|
||||||
|
margin-right: 30%;
|
||||||
|
margin-top: 10%;
|
||||||
|
margin-bottom: 1%;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.main {
|
||||||
|
background-color: white;
|
||||||
|
text-align: left;
|
||||||
|
border: solid black 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.main-inside {
|
||||||
|
background-color: white;
|
||||||
|
padding-left: 20px;
|
||||||
|
padding-right: 50px;
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 50px;
|
||||||
|
margin-top: 30px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.footer {
|
||||||
|
background-color: #dcdff4;
|
||||||
|
font-size: 10px;
|
||||||
|
border-top: solid black 1px;
|
||||||
|
padding-left: 5px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.header {
|
||||||
|
background-color: #dcdff4;
|
||||||
|
border-bottom: solid black 1px;
|
||||||
|
padding-left: 5px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.footer p {
|
||||||
|
margin: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link,a:visited,a:active {
|
||||||
|
text-decoration:none;
|
||||||
|
color:blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
text-decoration:underline;
|
||||||
|
color:blue;
|
||||||
|
}
|
||||||
@ -1,7 +1,7 @@
|
|||||||
<?PHP
|
<?php
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
|
|
||||||
PHP vCard class v2.0
|
php vCard class v2.0
|
||||||
(c) Kai Blankenhorn
|
(c) Kai Blankenhorn
|
||||||
www.bitfolge.de/en
|
www.bitfolge.de/en
|
||||||
kaib@bitfolge.de
|
kaib@bitfolge.de
|
||||||
@ -40,7 +40,7 @@ function escape($string) {
|
|||||||
return str_replace(";","\;",$string);
|
return str_replace(";","\;",$string);
|
||||||
}
|
}
|
||||||
|
|
||||||
// taken from PHP documentation comments
|
// taken from php documentation comments
|
||||||
function quoted_printable_encode($input, $line_max = 76) {
|
function quoted_printable_encode($input, $line_max = 76) {
|
||||||
$hex = array('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F');
|
$hex = array('0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F');
|
||||||
$lines = preg_split("/(?:\r\n|\r|\n)/", $input);
|
$lines = preg_split("/(?:\r\n|\r|\n)/", $input);
|
||||||
@ -234,7 +234,7 @@ class vCard {
|
|||||||
$text.= "$key:$value\r\n";
|
$text.= "$key:$value\r\n";
|
||||||
}
|
}
|
||||||
$text.= "REV:".date("Y-m-d")."T".date("H:i:s")."Z\r\n";
|
$text.= "REV:".date("Y-m-d")."T".date("H:i:s")."Z\r\n";
|
||||||
$text.= "MAILER:PHP vCard class by Kai Blankenhorn\r\n";
|
$text.= "MAILER:php vCard class by Kai Blankenhorn\r\n";
|
||||||
$text.= "END:VCARD\r\n";
|
$text.= "END:VCARD\r\n";
|
||||||
return $text;
|
return $text;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user