home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Servidores / xampp-win32-1.6.7-installer.exe / phpMyAdmin / print.css < prev    next >
Cascading Style Sheet File  |  2008-06-23  |  1KB  |  69 lines

  1. .print_ignore {
  2.     display: none;
  3. }
  4.  
  5. body, table, th, td {
  6.     color:             #000000;
  7.     background-color:  #ffffff;
  8.     font-size:         8pt;
  9. }
  10.  
  11. img {
  12.     border: 0;
  13. }
  14.  
  15. table, th, td {
  16.     border-width:      0.1em;
  17.     border-color:      #000000;
  18.     border-style:      solid;
  19. }
  20.  
  21. table {
  22.     border-collapse:   collapse;
  23.     border-spacing:    0;
  24. }
  25.  
  26. th, td {
  27.     padding:           0.2em;
  28. }
  29.  
  30. th {
  31.     font-weight:       bold;
  32.     background-color:  #e5e5e5;
  33. }
  34.  
  35. @media print {
  36.     .print_ignore {
  37.         display: none;
  38.     }
  39.  
  40.     body, table, th, td {
  41.         color:             #000000;
  42.         background-color:  #ffffff;
  43.         font-size:         8pt;
  44.     }
  45.  
  46.     img {
  47.         border: 0;
  48.     }
  49.  
  50.     table, th, td {
  51.         border-width:      1px;
  52.         border-color:      #000000;
  53.         border-style:      solid;
  54.     }
  55.  
  56.     table {
  57.         border-collapse:   collapse;
  58.         border-spacing:    0;
  59.     }
  60.  
  61.     th, td {
  62.         padding:           0.2em;
  63.     }
  64.  
  65.     th {
  66.         font-weight:       bold;
  67.         background-color:  #e5e5e5;
  68.     }
  69. }