install.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /* ***** BEGIN LICENSE BLOCK *****
  2. * This file is part of DotClear.
  3. * Copyright (c) 2004 Olivier Meunier and contributors. All rights
  4. * reserved.
  5. *
  6. * DotClear is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * DotClear is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with DotClear; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. *
  20. * ***** END LICENSE BLOCK ***** */
  21. body {
  22. background : #fcfcfc url("fond.jpg");
  23. font-family : Verdana,Arial,Helevetica,sans-serif;
  24. color : #000;
  25. font-size : 0.8em;
  26. margin : 2em 8% 2em 8%;
  27. }
  28. a { color : #039; }
  29. html*a:hover, html*a:focus { text-decoration : none; }
  30. h1, h2 {
  31. font-family : sans-serif;
  32. }
  33. h1 {
  34. background : transparent url(../images/logo.png) no-repeat 0 20%;
  35. color : #666;
  36. padding-left : 200px;
  37. height : 60px;
  38. margin : 0;
  39. }
  40. h1 span {
  41. font-size : 0.5em;
  42. }
  43. h2 {
  44. color : #f90;
  45. }
  46. #main {
  47. background:#fff;
  48. color:#000;
  49. border:2px solid #000;
  50. padding : 1em;
  51. }
  52. .install { border-collapse : collapse; }
  53. .install td { padding : 0.5em 1em 0.2em 0; }
  54. .install .t { white-space: nowrap; }
  55. .important { font-weight: bold; color: #f00; }
  56. /* FORMULAIRES
  57. -------------------------------------------------------- */
  58. input, textarea, option, select {
  59. background : #eef3f5;
  60. color : #000;
  61. font-family : Verdana,Arial,Helvetica,sans-serif;
  62. font-size : 1em;
  63. }
  64. input, textarea {
  65. border-width : 1px;
  66. }
  67. *>input, *>textarea {
  68. border-color : #333;
  69. }
  70. label, span.label {
  71. display : block;
  72. }
  73. input.submit {
  74. border-style : outset;
  75. background : #d2e0e6 url(degrade_bleu.png) repeat-x 0 100%;
  76. font-weight : bold;
  77. }
  78. input.submit:hover, input.submit:focus {
  79. background : #fc3 url(degrade_orange.png) repeat-x 0 100%;
  80. }
  81. input.submit:active {
  82. border-style : inset;
  83. }
  84. p.field {
  85. clear : left;
  86. margin : 0;
  87. padding : 1em 0 0 0;
  88. }
  89. label.float, span.label {
  90. position : relative;
  91. float : left;
  92. width : 25%;
  93. padding-right : 0.5em;
  94. }