quote.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /**
  2. * WHMCS Quote Style Sheet
  3. *
  4. * This sheet contains the styles used on custom quotes.
  5. *
  6. * @project WHMCS
  7. * @cssdoc version 1.0-pre
  8. * @package WHMCS
  9. * @author WHMCS Limited <development@whmcs.com>
  10. * @copyright Copyright (c) WHMCS Limited 2005-2015
  11. * @license http://www.whmcs.com/license/
  12. * @link http://www.whmcs.com/
  13. */
  14. body,td,input,select {
  15. font-family: Tahoma;
  16. font-size: 11px;
  17. color: #000000;
  18. }
  19. form {
  20. margin: 0px;
  21. }
  22. a {
  23. color: #000000;
  24. }
  25. #wrapper {
  26. width: 600px;
  27. }
  28. .invoice-top-tables {
  29. width: 100%;
  30. border-collapse: separate;
  31. }
  32. .invoice-content {
  33. background-color: #ffffff;
  34. color: #000000;
  35. }
  36. .unpaid {
  37. font-size: 16px;
  38. color: #cc0000;
  39. font-weight: bold;
  40. }
  41. .paid {
  42. font-size: 16px;
  43. color: #779500;
  44. font-weight: bold;
  45. }
  46. .refunded {
  47. font-size: 16px;
  48. color: #224488;
  49. font-weight: bold;
  50. }
  51. .cancelled {
  52. font-size: 16px;
  53. color: #cccccc;
  54. font-weight: bold;
  55. }
  56. .collections {
  57. font-size: 16px;
  58. color: #ffcc00;
  59. font-weight: bold;
  60. }
  61. #invoiceitemstable {
  62. width: 100%;
  63. background-color: #cccccc;
  64. border-collapse: separate;
  65. }
  66. td.invoice-items-heading {
  67. background-color: #efefef;
  68. color: #000000;
  69. font-weight: bold;
  70. text-align: center;
  71. }
  72. td.invoice-items-row {
  73. background-color: #ffffff;
  74. color: #000000;
  75. }
  76. .creditbox {
  77. border: 1px dashed #cc0000;
  78. font-weight: bold;
  79. background-color: #FBEEEB;
  80. text-align: center;
  81. width: 100%;
  82. padding: 10px;
  83. color: #cc0000;
  84. margin-left: auto;
  85. margin-right: auto;
  86. }
  87. /**
  88. * -----------------
  89. * @section Quotes
  90. * -----------------
  91. */
  92. .invoice-error {
  93. color: #cc0000;
  94. }
  95. .inline-display {
  96. display: inline;
  97. }
  98. .invoice-border {
  99. border: 1px solid #cccccc;
  100. }
  101. .bottom-zero {
  102. border-bottom: 0px;
  103. }
  104. .bottom-left-zero {
  105. border-left: 0px;
  106. }
  107. #quoteAccept {
  108. display: none;
  109. }