main.css 1000 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. #menuBar {
  13. display: inline-block;
  14. position: fixed;
  15. top: 0;
  16. bottom: 0;
  17. left: 0;
  18. max-width: 250px;
  19. width: 100%;
  20. border-right: 1px solid gray;
  21. overflow: auto;
  22. }
  23. #menuBar > div {
  24. margin: 2em;
  25. }
  26. .treeroot {
  27. padding: 0 1.5em;
  28. }
  29. iframe#page {
  30. display: inline-block;
  31. position: fixed;
  32. top: 0;
  33. bottom: 0;
  34. right: 0;
  35. max-width: calc(100% - 250px);
  36. height: 100%;
  37. width: 100%;
  38. border: none;
  39. }
  40. div.page {
  41. margin: 0 1em;
  42. }
  43. fieldset.LDAPClass {
  44. margin-bottom: 1em;
  45. }
  46. fieldset.LDAPClass > legend {
  47. padding: 0 1em;
  48. }
  49. label.LDAPAttribute {
  50. display: block;
  51. margin: 3px;
  52. }
  53. label.LDAPAttribute>span {
  54. display: inline-block;
  55. width: 250px;
  56. }
  57. label.LDAPAttribute > input {
  58. display: inline-block;
  59. width: 450px;
  60. }