annotate 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
rev   line source
rlm@94 1 .transparentDiv
rlm@94 2 {
rlm@94 3 /* IE */
rlm@94 4 filter:alpha(opacity=50);
rlm@94 5 /* CSS3 standard */
rlm@94 6 opacity:0.5;
rlm@94 7 background-color:#000000;
rlm@94 8 height:800px;
rlm@94 9 width:300px;
rlm@94 10 }
rlm@94 11
rlm@94 12 /*
rlm@94 13 .transparentDiv {
rlm@94 14 width:400px;
rlm@94 15 height:180px;
rlm@94 16 margin:30px 50px;
rlm@94 17 background-color:#ffffff;
rlm@94 18 border:1px solid black;
rlm@94 19 /* for IE */
rlm@94 20 filter:alpha(opacity=60);
rlm@94 21 /* CSS3 standard */
rlm@94 22 opacity:0.6;
rlm@94 23 }
rlm@94 24 */