view stack.css @ 106:5b0753c6f34d laserkard tip

updated to newest compojure and a simpler syntax
author Robert McIntyre <rlm@mit.edu>
date Mon, 27 Sep 2010 20:22:58 -0400
parents 0f19af92260e
children
line wrap: on
line source
1 .transparentDiv
2 {
3 /* IE */
4 filter:alpha(opacity=50);
5 /* CSS3 standard */
6 opacity:0.5;
7 background-color:#000000;
8 height:800px;
9 width:300px;
10 }
12 /*
13 .transparentDiv {
14 width:400px;
15 height:180px;
16 margin:30px 50px;
17 background-color:#ffffff;
18 border:1px solid black;
19 /* for IE */
20 filter:alpha(opacity=60);
21 /* CSS3 standard */
22 opacity:0.6;
23 }
24 */