main.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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%, 300px);
  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;
  46. }
  47. .treeroot li {
  48. list-style-type: none;
  49. user-select: none;
  50. }
  51. .treeroot li > span::before {
  52. font-weight: bold !important;
  53. padding-right: 5px;
  54. }
  55. iframe#page {
  56. display: inline-flex;
  57. flex: 1;
  58. border: none;
  59. }
  60. #entity-page,#home-page {
  61. min-height: 100vh;
  62. }
  63. #entity-page {
  64. background: url("/img/OIG3.png") no-repeat center 22vh /44vh;
  65. }
  66. #entity-page #classContainer {
  67. background: rgba(255, 255, 255, 0.33);
  68. background: linear-gradient(to right, rgba(255, 255, 255, 0.45), 66%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
  69. backdrop-filter: blur(2px);
  70. }
  71. #home-page {
  72. background: #edf6fb;
  73. margin: 0;
  74. display: flex;
  75. }
  76. #home-page .logo-big {
  77. margin: auto;
  78. position: relative;
  79. }
  80. #home-page .logo-big > img {
  81. max-height: 44vh;
  82. max-width: 44vw;
  83. }
  84. #home-page .logo-big::before {
  85. position: absolute;
  86. display: inline-flex;
  87. top: -10px;
  88. bottom: -10px;
  89. left: -10px;
  90. right: -10px;
  91. content: ' ';
  92. border: solid 25px rgba(237,246,251, 0.75);
  93. filter: blur(30px);
  94. }
  95. div.page {
  96. margin: 0 1em;
  97. }
  98. fieldset.changes {
  99. margin: 1.5em 0;
  100. }
  101. fieldset.LDAPClass > legend {
  102. padding: 0 1em;
  103. }
  104. label.LDAPAttribute {
  105. display: block;
  106. margin: 3px;
  107. }
  108. label.LDAPAttribute > span {
  109. display: inline-block;
  110. width: 250px;
  111. }
  112. label.LDAPAttribute > span > .button {
  113. margin-left: 7px;
  114. }
  115. label.LDAPAttribute > span > .button-add {
  116. color: var(--bs-success);
  117. }
  118. label.LDAPAttribute > span > .button-remove {
  119. color: var(--bs-danger);
  120. }
  121. label.LDAPAttribute > span.mandatory {
  122. font-weight: bold;
  123. }
  124. label.LDAPAttribute > span.mandatory::before {
  125. content: "*";
  126. color: red;
  127. font-weight: bold;
  128. }
  129. label.LDAPAttribute .button::before {
  130. cursor: pointer;
  131. }
  132. label.LDAPAttribute > input {
  133. display: inline-block;
  134. width: 450px;
  135. }
  136. #ldifOutput {
  137. width: 100%;
  138. height: auto;
  139. }