Home | History | Annotate | Download | only in css
      1 
      2 /* =========== popup ================== */
      3 #backgroundPopup {  
      4   display:none;  
      5   position:fixed;  
      6   _position:absolute; /* hack for internet explorer 6*/  
      7   height:100%;  
      8   width:100%;  
      9   top:0;  
     10   left:0;  
     11   background:#000000;  
     12   border:1px solid #cecece;  
     13   z-index:1;  
     14 } 
     15 
     16 #popupContents {  
     17   display:none;  
     18   position:fixed;  
     19   _position:absolute; /* hack for internet explorer 6*/  
     20   height: 150px;  
     21   width:  408px;   
     22   background:#FFFFFF;  
     23   border: 2px solid #cecece;  
     24   z-index:2;  
     25   padding-left: 1ex;   
     26   font-size:13px;  
     27 } 
     28 
     29 #popupContents p {
     30  margin: 0px;
     31 }
     32 #popupContents h3 {
     33  margin: 0px;
     34 }
     35 
     36 #popupContactClose {  
     37   font-size:14px;  
     38   line-height:14px;  
     39   right:6px;  
     40   top:4px;  
     41   position:absolute;  
     42   color:#6fa5fd;  
     43   font-weight:700;  
     44   display:block;  
     45 } 
     46 
     47 a.popupLink {
     48   background: #FFF; 
     49   color: #0079C5;   
     50   font-family: "Comic Sans MS", sans-serif;
     51   white-space: nowrap;
     52   font-size: 14px;
     53   font-weight: bold;
     54 
     55   border-top:    2px solid #DDD;  
     56   border-left:   2px solid #DDD;  
     57   border-right:  2px solid #888;  
     58   border-bottom: 2px solid #888;    
     59   padding: 0px 1em 0px 1em;
     60   margin:  0px 0px 3px 0px; 
     61 }
     62 
     63 a.popupLink:hover {
     64    background: #E0E0EF;
     65    cursor: pointer;
     66 }
     67 
     68