general.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. REMINE.CSS
  3. */
  4. html, body
  5. {
  6. font-family: 'Open Sans', sans-serif;
  7. }
  8. *
  9. {
  10. box-sizing: border-box;
  11. }
  12. ul
  13. {
  14. margin: 0;
  15. padding: 0;
  16. list-style: none;
  17. }
  18. a
  19. {
  20. font: inherit;
  21. text-decoration: none;
  22. color: inherit;
  23. }
  24. table.dataTable
  25. {
  26. font-size: 90%;
  27. }
  28. .navbar-default
  29. {
  30. border-bottom: 1px solid rgba(0,0,0,0.15);
  31. height: 50px;
  32. box-sizing: border-box;
  33. }
  34. body > .screen
  35. {
  36. display: none;
  37. position: absolute;
  38. top: 8rem;
  39. left: 0;
  40. width: 100%;
  41. overflow-x: hidden;
  42. overflow-y: auto;
  43. z-index: 1;
  44. animation: pageOut 0.2s;
  45. /* background: #f4f4f4; */
  46. }
  47. body > .screen.active
  48. {
  49. animation: pageIn 0.2s;
  50. }
  51. @keyframes pageIn
  52. {
  53. from { opacity: 0; }
  54. to { opacity: 1; }
  55. }
  56. @keyframes pageOut
  57. {
  58. from { opacity: 1; }
  59. to { opacity: 0; }
  60. }
  61. #screen-loading
  62. {
  63. display: block;
  64. width: 100%;
  65. height: 100%;
  66. top: 0;
  67. background: #eee;
  68. z-index: 9999 !important;
  69. }
  70. body.screen-login #nav
  71. {
  72. display: none;
  73. }
  74. @media (min-width: 1500px)
  75. {
  76. .container {
  77. width: 1400px;
  78. }
  79. }
  80. .tab-pane
  81. {
  82. padding-top: 1em;
  83. }
  84. table > tbody > tr > td
  85. {
  86. white-space: nowrap;
  87. }
  88. .DTFC_RightHeadWrapper,
  89. .DTFC_RightBodyWrapper
  90. {
  91. border-left: 1px solid #ccc;
  92. }