index.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. .current {
  2. background-color: #0F83E8;
  3. color: white;
  4. text-align: center;
  5. height: 50px;
  6. line-height: 50px;
  7. margin-top: 3px;
  8. }
  9. .title {
  10. font-weight: bolder;
  11. font-size: 18px;
  12. margin: 10px 0 0 5px;
  13. }
  14. p.show {
  15. margin: 5px 0 3px 10px;
  16. cursor: pointer;
  17. font-size: 16px;
  18. font-weight: bold;
  19. }
  20. .wrapper {
  21. position: relative;
  22. }
  23. .add {
  24. position: absolute;
  25. right: 10px;
  26. top: 10px;
  27. z-index: 2;
  28. }
  29. .add-input {
  30. margin-top: 10px;
  31. }
  32. .column-menu {
  33. /*padding: 0 24px;*/
  34. /*position: fixed;*/
  35. width: 100%;
  36. z-index: 1;
  37. line-height: 50px;
  38. font-weight: 600;
  39. background-color: white;
  40. border-bottom: 1px solid #dcdadb;
  41. }
  42. .column-title {
  43. /*padding-left: 10px;*/
  44. font-weight: 500;
  45. font-size: 16px;
  46. display: inline-block;
  47. width: 168px;
  48. height: 35px;
  49. color: #3a76c5;
  50. }
  51. .column-content {
  52. margin-bottom: 20px;
  53. }
  54. .column-details {
  55. width: 120px;
  56. margin: 10px 48px 10px 0 !important;
  57. }
  58. .table-title {
  59. font-weight: 500;
  60. font-size: 20px;
  61. display: block;
  62. height: 35px;
  63. margin: 10px 0;
  64. }
  65. .table-title::before {
  66. content: '|';
  67. display: inline-block;
  68. font-weight: 900;
  69. color: #3187FA;
  70. /*border-right: */
  71. }
  72. .remark {
  73. font-weight: lighter;
  74. font-size: smaller;
  75. }
  76. .schema {
  77. width: 100%;
  78. height: 50px;
  79. margin-bottom: 10px;
  80. }
  81. .schema-name {
  82. color: #3187FA;
  83. font-weight: bold;
  84. font-size: 20px;
  85. line-height: 50px;
  86. }
  87. .schema-table-list-title {
  88. background-color: #f7f7f7;
  89. height: 40px;
  90. padding-left: 10px;
  91. }
  92. .schema-table-title {
  93. line-height: 40px;
  94. font-weight: bold;
  95. }
  96. .schema-table-list-content {
  97. height: 40px;
  98. padding-left: 10px;
  99. border-bottom: 1px solid #e9e9e9;
  100. }
  101. .name {
  102. color: #4874b9;
  103. cursor: pointer;
  104. }
  105. .schema-table-list-content:last-child {
  106. border-bottom: none;
  107. }
  108. .schema-table-content {
  109. line-height: 40px;
  110. }
  111. .schema-bottom {
  112. margin-top: 70px;
  113. }
  114. .delete-schema {
  115. }