mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-09-28 20:39:18 +02:00
* include/styles/install.css, include/styles/pandora.css, install.php: Yeeeha!, new look & feel for 4.0 version ! :-) * index.php: Minimal changes in session close (after the header render). * images/greyback.gif: New background for 4.0 (included the installer) * COPYING: removed bad carriage returns. * general/login_page.php: Small modifications to have a better style. * operation/system_alert.php, include/javascript/jquery.pandora.js, general/header.php: Implemented a "alert" icon who shows the general problems, instead naggin the user in each page. Incorporated the new feature to warn user when he doesn't change the default password :-) git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4463 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
114 lines
2.5 KiB
CSS
114 lines
2.5 KiB
CSS
/*
|
|
// Pandora FMS - the Flexible Monitoring System
|
|
// =============================================
|
|
// Copyright (c) 2004-2010 Artica Soluciones Tecnológicas S.L
|
|
|
|
// 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; version 2
|
|
|
|
// 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
h1 {
|
|
font: bold 1em Arial, Sans-serif;
|
|
font-size: 18px;
|
|
color: #ffffff;
|
|
text-align: center;
|
|
}
|
|
h2 {
|
|
font: bold 1em Arial, Sans-serif;
|
|
border-bottom: solid 1px #00aa00;
|
|
font-size: 16px;
|
|
}
|
|
|
|
div#install_container {
|
|
margin: 0 auto;
|
|
margin-top: 45px;
|
|
width: 650px;
|
|
}
|
|
div#logo_img {
|
|
text-align: center;
|
|
width: 200px;
|
|
}
|
|
div#wizard {
|
|
text-align: left;
|
|
border: 1px solid #999;
|
|
margin-top: 1em;
|
|
padding: 20px;
|
|
padding-left: 20px;
|
|
width: 650px;
|
|
background-color: #fafafa;
|
|
}
|
|
div#install_box, div#install_img {
|
|
float: right;
|
|
padding-right: 20px;
|
|
margin-top: 0px;
|
|
width: 400px;
|
|
}
|
|
div#install_img {
|
|
margin-bottom: 25px;
|
|
margin-left: 25px;
|
|
}
|
|
div#foot_install {
|
|
font-size: 7pt;
|
|
color: #fff;
|
|
margin-top: #000;
|
|
padding-top: 5px;
|
|
padding-bottom: 5px;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
text-align: center;
|
|
background: #777;
|
|
width: 650px;
|
|
border-left: 1px solid #999;
|
|
border-right: 1px solid #999;
|
|
}
|
|
div#foot_install a {
|
|
color: #ccc;
|
|
}
|
|
input#step4, input#step4:hover {
|
|
width: 70px;
|
|
height: 16px;
|
|
border: 0px;
|
|
background-color: #fafafa;
|
|
}
|
|
div.warn {
|
|
background: url(../../images/info.png) no-repeat;
|
|
color: #ac4444;
|
|
margin-top: 7px;
|
|
padding: 2px 1px 6px 25px;
|
|
}
|
|
div.info {
|
|
background: url(../../images/information.png) no-repeat;
|
|
color: #000000;
|
|
margin-top: 7px;
|
|
padding: 2px 1px 6px 25px;
|
|
}
|
|
span.arr {
|
|
background: url(../../images/arrow.png) no-repeat;
|
|
margin-top: 2px;
|
|
margin-left: 5px;
|
|
padding: 2px 1px 6px 15px;
|
|
display: block;
|
|
font-family: verdana,arial, sans;
|
|
font-size: 8.5pt;
|
|
}
|
|
|
|
body, td {
|
|
font-family: Sans, Arial, sans;
|
|
font-size: 9pt;
|
|
line-height: 15px;
|
|
}
|
|
|
|
body{
|
|
background: url(../../images/greyback.gif);
|
|
}
|
|
|