default.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
  2. * Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net>
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 3 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. body {
  18. font-size:12px;
  19. font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
  20. background: #f9f9f9;
  21. /* background-color: #F4F4F4; */
  22. margin: 5px 10px;
  23. }
  24. div.titre {
  25. padding: 5px 5px 5px 5px;
  26. margin: 0 0 0 0;
  27. }
  28. span.titre {
  29. font-size: 14px;
  30. font-weight: bold;
  31. background: #FFFFFF;
  32. color: #4965B3;
  33. padding: 5px 5px 5px 5px;
  34. margin: 0 0 0 0;
  35. border: 1px solid #AAAAAA;
  36. }
  37. div.soustitre {
  38. font-size: 15px;
  39. font-weight: bold;
  40. color: #4965B3;
  41. padding: 0 1.2em 0.5em 2em;
  42. margin: 1.2em 1.2em 1.2em 1.2em;
  43. border-bottom: 1px solid #8CACBB;
  44. border-right: 1px solid #8CACBB;
  45. text-align: right;
  46. }
  47. input:disabled
  48. {
  49. background: #FDFDFD;
  50. border: 1px solid #ACBCBB;
  51. padding: 0 0 0 0;
  52. margin: 0 0 0 0;
  53. }
  54. table.main {
  55. background: #dcdcd3;
  56. text-align: left;
  57. border: 1px solid #8CACBB;
  58. }
  59. div.ok {
  60. color: #114466;
  61. }
  62. div.warning {
  63. color: #777711;
  64. }
  65. div.error {
  66. color: #550000; font-weight: bold;
  67. padding: 0.2em 0.2em 0.2em 0.2em;
  68. margin: 0.5em 0 0.5em 0;
  69. border: 1px solid #6C7C8B;
  70. }
  71. font.error {
  72. color: #550000;
  73. }
  74. div.header {
  75. background-color: #dcdff4;
  76. border-bottom: solid black 1px;
  77. padding-left: 5px;
  78. text-align: center;
  79. }
  80. a:link,a:visited,a:active {
  81. color: #2266DD;
  82. text-decoration:none;
  83. }
  84. a:hover {
  85. color: #2266DD;
  86. text-decoration:underline;
  87. }
  88. a.titre {
  89. text-decoration:none;
  90. }
  91. div.main-inside h2 {
  92. font-size:18px;
  93. font-weight: bold;
  94. color: #4965B3;
  95. }
  96. tr.bg1 {
  97. background-color: #E5E5E5;
  98. }
  99. tr.bg2 {
  100. background-color: #B5C5C5;
  101. }
  102. td.label {
  103. background: #dcdcd3;
  104. color: #5945A3;
  105. padding: 5px 5px 5px 5px;
  106. margin: 0 0 0 0;
  107. border-bottom: 1px solid #8CACBB;
  108. }
  109. td.comment {
  110. background: #dcdcd3;
  111. color: black;
  112. padding: 5px 5px 5px 5px;
  113. margin: 0 0 0 0;
  114. text-decoration:none;
  115. font-size: 13px;
  116. border-bottom: 1px solid #8CACBB;
  117. }
  118. .install
  119. {
  120. border: 1px solid #8CACBB;
  121. padding: 4px 4px 4px 4px;
  122. }
  123. tr.title
  124. {
  125. background: #DDDFDD;
  126. }
  127. table { font-size: 12px; }
  128. table.login { border: 1px solid #C0C0C0; background: #FFF; font-size: 12px; }
  129. .inline-block
  130. {
  131. display:inline-block;
  132. vertical-align: top;
  133. margin: 12px;
  134. min-width: 400px;
  135. }