Update of /cvsroot/phpwebapp/web_app
In directory sc8-pr-cvs1:/tmp/cvs-serv19635
Modified Files:
styles.css
Log Message:
- improved styles
- removed some extra spaces
Index: styles.css
===================================================================
RCS file: /cvsroot/phpwebapp/web_app/styles.css,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** styles.css 16 Jul 2003 09:28:00 -0000 1.2
--- styles.css 15 Aug 2003 07:05:08 -0000 1.3
***************
*** 1,34 ****
.error_msg
{
! COLOR: red;
! TEXT-DECORATION: none;
! font-family:"Verdana";
! font-size:10px;
! font-weight:bold
}
.warning_msg
{
! COLOR: brawn;
! TEXT-DECORATION: none;
! font-family:"Verdana";
! font-size:10px;
! font-weight:bold
}
.whiteRow
{
! COLOR: navy;
! FONT-FAMILY: Arial, Helvetica, Geneva, Swiss, SunSans-Regular;
! FONT-SIZE: 12px;
! background-color:#ffffff;
}
.greyRow
{
! COLOR: navy;
! FONT-FAMILY: Arial, Helvetica, Geneva, Swiss, SunSans-Regular;
! FONT-SIZE: 12px;
! background-color:#f2f2f2;
}
--- 1,57 ----
+ /* styles of [Powered by phpWebApp] logo */
+ .webapp_logo
+ {
+ margin: 10 0;
+ padding: 0px;
+ }
+ .webapp_logo a
+ {
+ margin: 0;
+ padding: 2px;
+ font-family: arial, helvetica, sans-se;
+ font-size: 10pt;
+ font-weight: bold;
+ text-align: center;
+ text-decoration: none;
+ color: #008800;
+ background-color: #dddddd;
+ white-space: nowrap;
+ border: 1px solid #444488;
+ }
+ .webapp_logo a:hover
+ {
+ background-color: #eeeeee;
+ }
+
.error_msg
{
! color: red;
! font-family: arial, helvetica, sans-se;
! font-size: 10px;
! font-weight: bold;
}
.warning_msg
{
! color: brawn;
! font-family: arial, helvetica, sans-se;
! font-size: 10px;
! font-weight: bold;
}
.whiteRow
{
! color: navy;
! font-family: arial, helvetica, sans-se;
! font-size: 12px;
! background-color: #ffffff;
}
.greyRow
{
! color: navy;
! font-family: arial, helvetica, sans-se;
! font-size: 12px;
! background-color: #f2f2f2;
}
|