Advertisement
Guest User

Untitled

a guest
Jun 26th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.99 KB | None | 0 0
  1.  
  2. #shadowing
  3. {
  4.     display: none;
  5.     position: fixed;
  6.     top: 0%;
  7.     left: 0%;
  8.     width: 100%;
  9.     height: 100%;
  10.     background-color: #CCA;
  11.     z-index:10;
  12.     opacity:0.6;
  13.     filter: alpha(opacity=50);
  14. }
  15.  
  16. #box
  17. {
  18.     display: none;
  19.     position: fixed;
  20.     top: -1%;
  21.     left: 20%;
  22.     width: auto;
  23.     height:auto;
  24.     max-width:auto !important;  // !important permet de mettre du code qui ne sera pas lut pas internet explorer
  25.     max-height:auto !important;
  26.     max-width:806px;           // sera lut pas internet explorer et ignoré par les autres navigateurs car
  27.     max-height:650px;          //les autres utiliseront uniquement ce qui est important
  28.     padding: 0;
  29.     margin:0;
  30.     border: 2px solid black;
  31.     background-color: white;
  32.     z-index:11;
  33.     background-color: #8E8E8E;
  34. }
  35.  
  36.  
  37. #boxcontent
  38. {
  39.     left:0;
  40.     right:0;
  41.     bottom:0;
  42.     margin:0;
  43.     padding: 8px;
  44.     overflow: auto;
  45.     width:100%;
  46.     height:100%;
  47. }
  48.  
  49. #boxtitle
  50. {
  51.     left:0%;
  52.     width:100%;
  53.     height:20px;
  54.     padding:0;
  55.     margin:0;
  56.     color:black;
  57.     text-align:center;
  58. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement