stil.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. body {
  2. background-color: #eee;
  3. max-width: 700px;
  4. border: solid 1px #ccc;
  5. margin: 0 auto;
  6. font-family: 'DejaVu Sans', sans-serif;
  7. }
  8. div#header { text-align: center; }
  9. p {
  10. padding-left: 1%;
  11. padding-right: 2%;
  12. }
  13. label.first {
  14. font-weight: bold;
  15. font-size: .9em;
  16. }
  17. label.help {
  18. color: #333;
  19. font-size: .7em;
  20. }
  21. label.subtitle {
  22. color: #333;
  23. font-size: .9em;
  24. font-weight: bold;
  25. }
  26. select, input#send {
  27. font-weight: bold;
  28. }
  29. div#license {
  30. font-size: 0.9em;
  31. }
  32. form input[type=text],
  33. form input[type=email],
  34. form input[type=number],
  35. form input[type=checkbox],
  36. form input[type=button],
  37. form input[type=submit],
  38. form select,
  39. form option,
  40. form textarea {
  41. background: #eee;
  42. color: #222;
  43. border-radius: 3px;
  44. border: 1px gray inset;
  45. padding: 2px 3px;
  46. }
  47. form input[type=text],
  48. form input[type=email],
  49. form select,
  50. form option,
  51. form textarea {
  52. width: 96%;
  53. }
  54. form input[type=button],
  55. form input[type=submit] {
  56. border: 2px black outset;
  57. padding: 1%;
  58. }
  59. table#form-table {
  60. background: #ddd;
  61. }
  62. table#form-table td {
  63. width: 30%;
  64. outline: 0px red solid;
  65. padding-top: 1em;
  66. vertical-align: top;
  67. }
  68. table#form-table td.right {
  69. text-align: right;
  70. }
  71. table#form-table td.center {
  72. text-align: center;
  73. }
  74. table#form-table td.left {
  75. text-align: left;
  76. }
  77. hr {
  78. border: 0;
  79. height: 1px;
  80. background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
  81. background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
  82. background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
  83. background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
  84. }