main.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
  5. }
  6. a {
  7. color: #00B7FF;
  8. }
  9. .category-list .category.selected {
  10. background-color: #dbfffd;
  11. }
  12. .content.page-login .logo {
  13. height: 33vh;
  14. max-height: 200px;
  15. }
  16. .content.page-login > .row {
  17. height: 100vh;
  18. max-width: 340px;
  19. margin: auto;
  20. }
  21. .content.page-login > .row > .col {
  22. border: 1px solid var(--bs-border-color);
  23. border-radius: calc(var(--bs-border-radius) - 1px);
  24. }
  25. .page-index {
  26. display: flex;
  27. }
  28. .button-wrapper {
  29. display: inline-flex;
  30. justify-content: end;
  31. }
  32. #menuBar {
  33. display: inline-block;
  34. min-width: 200px;
  35. width: min(100%, 350px);
  36. height: 100vh;
  37. border-right: 1px solid gray;
  38. overflow: auto;
  39. resize: horizontal;
  40. }
  41. #menuBar > div {
  42. margin: 2em;
  43. }
  44. .treeroot {
  45. padding: 0 1.5em;
  46. }
  47. iframe#page {
  48. display: inline-flex;
  49. flex: 1;
  50. border: none;
  51. }
  52. #entity-page {
  53. background: url("/img/OIG3.png") no-repeat center 22vh /44vh;
  54. }
  55. div.page {
  56. margin: 0 1em;
  57. }
  58. fieldset.changes {
  59. margin: 1.5em 0;
  60. }
  61. fieldset.LDAPClass > legend {
  62. padding: 0 1em;
  63. }
  64. label.LDAPAttribute {
  65. display: block;
  66. margin: 3px;
  67. }
  68. label.LDAPAttribute > span {
  69. display: inline-block;
  70. width: 250px;
  71. }
  72. label.LDAPAttribute > span.mandatory:after {
  73. content: " (*)"
  74. }
  75. label.LDAPAttribute > input {
  76. display: inline-block;
  77. width: 450px;
  78. }
  79. #ldifOutput {
  80. width: 100%;
  81. height: auto;
  82. }