|
From: mdw c. <myd...@li...> - 2001-09-06 22:07:55
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/templates/default
Modified Files:
box.html main.html
Log Message:
Nice boxes !
Just use CSS to make 3D faked boxes... looks good ;)
NOTE : it doesn't looks good under netscape <= 4.7 (best viwed with Mozilla 0.9.x)
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/templates/default/box.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- box.html 2001/09/06 14:42:44 1.1
+++ box.html 2001/09/06 22:07:52 1.2
@@ -1,5 +1,5 @@
<!-- BLOCK:HEAD -->
-<TABLE CELLSPACING="2" CLASS="ombre" WIDTH="100%" BGCOLOR="#9999CC"
+<TABLE CELLSPACING="0" CLASS="ombre" WIDTH="100%" BGCOLOR="#9999CC"
ALIGN="center" NOWRAP>
<TR>
<TD CLASS="iconame"> ~TITLE~ </TD>
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/templates/default/main.html,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -3 -r1.24 -r1.25
--- main.html 2001/09/06 14:42:44 1.24
+++ main.html 2001/09/06 22:07:54 1.25
@@ -28,20 +28,25 @@
padding-left: 0;
}
- .ombre { border-bottom : thick solid #333333;
+ .ombre {
+ border-bottom : thick solid #333333;
border-left : thick solid #333333;
+ border-right : thick solid #AAAADD;
+ border-top : thick solid #AAAADD;
border-width : 1 ; }
- .interne { background-color : #CCCCDD;
-
-
+ .interne {
+
+ background-color : #CCCCDD;
font-family : tahoma,arial,helvetica;
- font-size : 8pt ;
- color: #FFFFFF;
- border-top : thick solid #666699;
- border-bottom : thick solid #CCCCFF;
- border-left : thick solid #CCCCFF;
- border-right : thick solid #666699;
+ font-size : 9pt ;
+ color: #000000;
+
+ border-bottom : thick solid #666699;
+ border-left : thick solid #666699;
+ border-top : thick solid #CCCCFF;
+ border-right : thick solid #CCCCFF;
+
border-width : 1 ;
padding-left: 3;
padding-right: 4;
@@ -50,10 +55,11 @@
.iconame { padding-left : 2 ;
padding-right : 2 ;
font-family : tahoma,arial,helvetica;
- font-size : 8pt ;
- color : #ffffff ;
+ font-size : 9pt ;
+ color : #000000 ;
letter-spacing : 1 ;
- text-align : center ;}
+ text-align : center ;
+ }
</style>
|