Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
1.5 KiB

  1. /* ARP.CSS - stylesheet for the add and remove pages */
  2. H1 {
  3. font-size: 13pt;
  4. font-family: Verdana, Tahoma, Arial;
  5. font-weight: bold;
  6. }
  7. BUTTON {
  8. font-size: 8pt; /* Set explicitly b/c it is not inherited */
  9. font-family: Tahoma, Verdana, Arial, sans-serif; /* Set explicitly b/c it is not inherited */
  10. padding: 1px; /* Make buttons look more like Win32 buttons */
  11. }
  12. BODY {
  13. margin:7px;
  14. cursor: default;
  15. font-size: 8pt;
  16. font-family: Tahoma, Verdana, Arial, sans-serif;
  17. }
  18. TABLE {
  19. font-size: 8pt; /* Set explicitly b/c it is not inherited */
  20. cursor: default; /* Set explicitly b/c it is not inherited */
  21. xborder: '1px solid green';
  22. border-collapse:collapse;
  23. width:100%;
  24. height:100%;
  25. }
  26. SELECT {
  27. font-family: Tahoma, Verdana, Arial, sans-serif; /* Set explicitly b/c it is not inherited */
  28. font-size: 8pt; /* Set explicitly b/c it is not inherited */
  29. color: windowtext;
  30. }
  31. TD {
  32. padding: 0px;
  33. xborder: '1px solid burlywood'; /* Used for layout debugging */
  34. }
  35. A {
  36. color: windowtext;
  37. }
  38. A.Focus {
  39. color: highlighttext;
  40. }
  41. /* Spans in a label element are considered the accelerator,
  42. so underline them. */
  43. LABEL SPAN {
  44. text-decoration: underline;
  45. accelerator: true; /* tell trident to apply keyboard cues as necessary */
  46. }