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.

92 lines
1.4 KiB

14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
  1. /* TODO: this file is not up to the best standards and will be fixed after an overhaul of the form code */
  2. /**
  3. * This file provides styles for forms in general and specifically
  4. * for ?do=
  5. * - login
  6. * - resendpwd
  7. * - register
  8. * - profile
  9. * - subscribe
  10. */
  11. /* ---------------- forms ------------------------ */
  12. .dokuwiki form {
  13. border: none;
  14. display: inline;
  15. }
  16. .dokuwiki label.block {
  17. display: block;
  18. text-align: right;
  19. font-weight: bold;
  20. }
  21. [dir=rtl] .dokuwiki label.block {
  22. text-align: left;
  23. }
  24. .dokuwiki label.simple {
  25. display: block;
  26. text-align: left;
  27. font-weight: normal;
  28. }
  29. [dir=rtl] .dokuwiki label.simple {
  30. text-align: right;
  31. }
  32. .dokuwiki label.block select,
  33. .dokuwiki label.block input.edit {
  34. width: 50%;
  35. }
  36. .dokuwiki label span {
  37. vertical-align: middle;
  38. }
  39. .dokuwiki fieldset {
  40. width: 400px;
  41. text-align: center;
  42. border: 1px solid __border__;
  43. padding: 0.5em;
  44. margin: auto;
  45. }
  46. .dokuwiki input.edit,
  47. .dokuwiki select.edit {
  48. vertical-align: middle;
  49. }
  50. .dokuwiki select.edit {
  51. padding: 0.1em 0;
  52. }
  53. .dokuwiki input.button,
  54. .dokuwiki button.button {
  55. vertical-align: middle;
  56. }
  57. /**
  58. * Styles for the subscription page
  59. */
  60. #subscribe__form {
  61. display: block;
  62. width: 400px;
  63. text-align: center;
  64. }
  65. #subscribe__form fieldset {
  66. text-align: left;
  67. margin: 0.5em 0;
  68. }
  69. [dir=rtl] #subscribe__form fieldset {
  70. text-align: right;
  71. }
  72. #subscribe__form label {
  73. display: block;
  74. margin: 0 0.5em 0.5em;
  75. }