123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- /* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net>
- *
- * 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 3 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, see <http://www.gnu.org/licenses/>.
- */
- body {
- font-size:12px;
- font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
- background: #f9f9f9;
- /* background-color: #F4F4F4; */
- margin: 5px 10px;
- }
- div.titre {
- padding: 5px 5px 5px 5px;
- margin: 0 0 0 0;
- }
- span.titre {
- font-size: 14px;
- font-weight: bold;
- background: #FFFFFF;
- color: #4965B3;
- padding: 5px 5px 5px 5px;
- margin: 0 0 0 0;
- border: 1px solid #AAAAAA;
- }
- div.soustitre {
- font-size: 15px;
- font-weight: bold;
- color: #4965B3;
- padding: 0 1.2em 0.5em 2em;
- margin: 1.2em 1.2em 1.2em 1.2em;
- border-bottom: 1px solid #8CACBB;
- border-right: 1px solid #8CACBB;
- text-align: right;
- }
- input:disabled
- {
- background: #FDFDFD;
- border: 1px solid #ACBCBB;
- padding: 0 0 0 0;
- margin: 0 0 0 0;
- }
- table.main {
- background: #dcdcd3;
- text-align: left;
- border: 1px solid #8CACBB;
- }
- div.ok {
- color: #114466;
- }
- div.warning {
- color: #777711;
- }
- div.error {
- color: #550000; font-weight: bold;
- padding: 0.2em 0.2em 0.2em 0.2em;
- margin: 0.5em 0 0.5em 0;
- border: 1px solid #6C7C8B;
- }
- font.error {
- color: #550000;
- }
- div.header {
- background-color: #dcdff4;
- border-bottom: solid black 1px;
- padding-left: 5px;
- text-align: center;
- }
- a:link,a:visited,a:active {
- color: #2266DD;
- text-decoration:none;
- }
- a:hover {
- color: #2266DD;
- text-decoration:underline;
- }
- a.titre {
- text-decoration:none;
- }
- div.main-inside h2 {
- font-size:18px;
- font-weight: bold;
- color: #4965B3;
- }
- tr.bg1 {
- background-color: #E5E5E5;
- }
- tr.bg2 {
- background-color: #B5C5C5;
- }
- td.label {
- background: #dcdcd3;
- color: #5945A3;
- padding: 5px 5px 5px 5px;
- margin: 0 0 0 0;
- border-bottom: 1px solid #8CACBB;
- }
- td.comment {
- background: #dcdcd3;
- color: black;
- padding: 5px 5px 5px 5px;
- margin: 0 0 0 0;
- text-decoration:none;
- font-size: 13px;
- border-bottom: 1px solid #8CACBB;
- }
- .install
- {
- border: 1px solid #8CACBB;
- padding: 4px 4px 4px 4px;
- }
- tr.title
- {
- background: #DDDFDD;
- }
- table { font-size: 12px; }
- table.login { border: 1px solid #C0C0C0; background: #FFF; font-size: 12px; }
- .inline-block
- {
- display:inline-block;
- vertical-align: top;
- margin: 12px;
- min-width: 400px;
- }
|