1. /**
  2. * Stylesheet used to display a skin example for PEAR_PackageUpdate Web frontend
  3. *
  4. * @category   PEAR
  5. * @package    PEAR_PackageUpdate_Web
  6. * @author     Laurent Laville <pear@laurent-laville.org>
  7. * @copyright  2006 Laurent Laville
  8. * @license    http://www.php.net/license/3_01.txt  PHP License 3.01
  9. * @version    CVS: $Id:$
  10. * @since      File available since Release 0.1.0
  11. */
  12.  
  13. body {
  14.   font-family: Verdana, Arial;
  15.   background-color: black;
  16.   color: white;
  17. }
  18.  
  19. .dialogbox {
  20.   width: 700px;
  21.   text-align: center;
  22.   border-collapse: collapse;
  23. }
  24. table.dialogbox td {
  25.   padding: 2px;
  26. }
  27. div#widget-icon-info {
  28.   margin-left: 70px;
  29.   with:   48px;
  30.   height: 48px;
  31.   background: url('info.gif') no-repeat;
  32. }
  33. div#widget-icon-error {
  34.   margin-left: 70px;
  35.   with:   48px;
  36.   height: 48px;
  37.   background: url('warning.gif') no-repeat;
  38. }
  39.  
  40. .widget-header {
  41.   white-space: nowrap;
  42.   background-color: #FF0000;
  43.   font-weight: bold;
  44. }
  45. .widget-label {
  46.   white-space: nowrap;
  47.   vertical-align: top;
  48.   font-weight: bold;
  49.   text-align: right;
  50.   color: blue;
  51. }
  52. .widget-input {
  53.   text-align: left;
  54. }
  55. .widget-buttons {
  56.   background-color: #CCCCCC;
  57.   text-align: left;
  58. }
  59.  
  60. input {
  61.   width: 100px;
  62. }
  63.  
  64.