6 |
jpm |
1 |
<?
|
|
|
2 |
//------------------------------------------------------------------------------
|
|
|
3 |
// FICHIER : $RCSfile: admin_site.css,v $
|
|
|
4 |
// AUTEUR : $Author: jpm $
|
|
|
5 |
// VERSION : $Revision: 1.1 $
|
|
|
6 |
// DATE : $Date: 2004-06-16 14:20:47 $
|
|
|
7 |
//------------------------------------------------------------------------------
|
|
|
8 |
// GSite - Web site management in PHP - gus module
|
|
|
9 |
//
|
|
|
10 |
// Copyright (C) 2001 COUDOUNEAU Laurent (lc@gsite.org)
|
|
|
11 |
//
|
|
|
12 |
// This library is free software; you can redistribute it and/or
|
|
|
13 |
// modify it under the terms of the GNU Lesser General Public
|
|
|
14 |
// License as published by the Free Software Foundation; either
|
|
|
15 |
// version 2.1 of the License, or (at your option) any later version.
|
|
|
16 |
//
|
|
|
17 |
// This library is distributed in the hope that it will be useful,
|
|
|
18 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
19 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
20 |
// Lesser General Public License for more details.
|
|
|
21 |
//
|
|
|
22 |
// You should have received a copy of the GNU Lesser General Public
|
|
|
23 |
// License along with this library; if not, write to the Free Software
|
|
|
24 |
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
25 |
//------------------------------------------------------------------------------
|
|
|
26 |
//------------------------------------------------------------------------------
|
|
|
27 |
|
|
|
28 |
$outputText .= ".gusTitle {\n";
|
|
|
29 |
$outputText .= " font-family: $STYLErow->S_FONT_FAMILY;\n";
|
|
|
30 |
$outputText .= " font-size: $STYLErow->S_FONT_SIZE_SMALL;\n";
|
|
|
31 |
$outputText .= " font-style: normal;\n";
|
|
|
32 |
$outputText .= " font-weight: bold;\n";
|
|
|
33 |
$outputText .= " text-align: center;\n";
|
|
|
34 |
$outputText .= " vertical-align: middle;\n";
|
|
|
35 |
$outputText .= " color: $STYLErow->S_COLOR_TEXT;\n";
|
|
|
36 |
$outputText .= " background-color: $STYLErow->S_COLOR_5;\n";
|
|
|
37 |
$outputText .= "}\n";
|
|
|
38 |
$outputText .= "\n";
|
|
|
39 |
$outputText .= ".gusError {\n";
|
|
|
40 |
$outputText .= " font-family: $STYLErow->S_FONT_FAMILY;\n";
|
|
|
41 |
$outputText .= " font-size: $STYLErow->S_FONT_SIZE_BIG;\n";
|
|
|
42 |
$outputText .= " font-style: normal;\n";
|
|
|
43 |
$outputText .= " font-weight: bold;\n";
|
|
|
44 |
$outputText .= " text-align: center;\n";
|
|
|
45 |
$outputText .= " vertical-align: middle;\n";
|
|
|
46 |
$outputText .= " color: $STYLErow->S_COLOR_TEXT_ALERT;\n";
|
|
|
47 |
$outputText .= " background-color: $STYLErow->S_COLOR_3;\n";
|
|
|
48 |
$outputText .= "}\n";
|
|
|
49 |
$outputText .= "\n";
|
|
|
50 |
$outputText .= ".gusInput {\n";
|
|
|
51 |
$outputText .= " font-family: $STYLErow->S_FONT_FAMILY;\n";
|
|
|
52 |
$outputText .= " font-size: $STYLErow->S_FONT_SIZE_SMALL;\n";
|
|
|
53 |
$outputText .= " font-style: normal;\n";
|
|
|
54 |
$outputText .= " font-weight: normal;\n";
|
|
|
55 |
$outputText .= " text-align: left;\n";
|
|
|
56 |
$outputText .= " vertical-align: middle;\n";
|
|
|
57 |
$outputText .= " color: $STYLErow->S_COLOR_TEXT;\n";
|
|
|
58 |
$outputText .= " background-color: $STYLErow->S_COLOR_6;\n";
|
|
|
59 |
$outputText .= "}\n";
|
|
|
60 |
$outputText .= "\n";
|
|
|
61 |
$outputText .= ".gusLabel {\n";
|
|
|
62 |
$outputText .= " font-family: $STYLErow->S_FONT_FAMILY;\n";
|
|
|
63 |
$outputText .= " font-size: $STYLErow->S_FONT_SIZE_SMALL;\n";
|
|
|
64 |
$outputText .= " font-style: normal;\n";
|
|
|
65 |
$outputText .= " font-weight: bold;\n";
|
|
|
66 |
$outputText .= " text-align: right;\n";
|
|
|
67 |
$outputText .= " vertical-align: middle;\n";
|
|
|
68 |
$outputText .= " color: $STYLErow->S_COLOR_TEXT;\n";
|
|
|
69 |
$outputText .= " background-color: $STYLErow->S_COLOR_5;\n";
|
|
|
70 |
$outputText .= "}\n";
|
|
|
71 |
$outputText .= "\n";
|
|
|
72 |
$outputText .= ".gusLabelTop {\n";
|
|
|
73 |
$outputText .= " font-family: $STYLErow->S_FONT_FAMILY;\n";
|
|
|
74 |
$outputText .= " font-size: $STYLErow->S_FONT_SIZE_SMALL;\n";
|
|
|
75 |
$outputText .= " font-style: normal;\n";
|
|
|
76 |
$outputText .= " font-weight: bold;\n";
|
|
|
77 |
$outputText .= " text-align: right;\n";
|
|
|
78 |
$outputText .= " vertical-align: top;\n";
|
|
|
79 |
$outputText .= " color: $STYLErow->S_COLOR_TEXT;\n";
|
|
|
80 |
$outputText .= " background-color: $STYLErow->S_COLOR_5;\n";
|
|
|
81 |
$outputText .= "}\n";
|
|
|
82 |
$outputText .= "\n";
|
|
|
83 |
|
|
|
84 |
//------------------------------------------------------------------------------
|
|
|
85 |
// $Log: not supported by cvs2svn $
|
|
|
86 |
// Revision 1.1 2003/10/10 09:58:21 alex
|
|
|
87 |
// installation
|
|
|
88 |
//
|
|
|
89 |
// Revision 1.1.1.1 2002/10/02 07:32:21 root
|
|
|
90 |
// initialisation site de Tela
|
|
|
91 |
//
|
|
|
92 |
// Revision 1.1 2002/02/25 16:38:33 lc
|
|
|
93 |
// First revision.
|
|
|
94 |
//
|
|
|
95 |
//-- End of source ------------------------------------------------------------
|
|
|
96 |
?>
|