App.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /*.kourtina{
  2. z-index: 2;
  3. height: 100vh;
  4. position: fixed;
  5. top: 0;
  6. width: 100%;
  7. }*/
  8. .main {
  9. flex-direction: column;
  10. width: 100vw;
  11. height: 100vh;
  12. overflow: hidden;
  13. background-color:#dfdfdf;
  14. display: flex;
  15. }
  16. .mainbar{
  17. z-index: 1;
  18. display: flex;
  19. justify-content: space-between;
  20. background: #F1F1F1;
  21. top: 0;
  22. width: 100%;
  23. border-bottom: 1px solid rgb(0, 0, 0,0.16);
  24. opacity: 1;
  25. }
  26. .horizontal_bars {
  27. display: flex;
  28. flex-direction: row;
  29. flex-basis: 100%;
  30. }
  31. .horizontal_bars .toolbox{
  32. background: #F1F1F1;
  33. z-index: 1;
  34. flex-shrink: 0;
  35. display: flex;
  36. flex-direction: row;
  37. }
  38. .horizontal_bars .toolbox .tool_icon_bar{
  39. width: 48px;
  40. background: #F1F1F1 0% 0% no-repeat padding-box;
  41. box-shadow: 1px 0px 1px rgb(0, 0, 0,0.16);
  42. }
  43. .horizontal_bars .toolbox .moduleBar{
  44. padding-top: 10px;
  45. padding-bottom: 10px;
  46. padding-left:20px;
  47. width: 258px;
  48. overflow: auto;
  49. }
  50. .horizontal_bars .sidebar{
  51. width: 311px;
  52. z-index: 1;
  53. flex-shrink: 0;
  54. background: #F1F1F1 0% 0% no-repeat padding-box;
  55. opacity: 1;
  56. overflow: auto;
  57. }
  58. body {
  59. background: #dfdfdf;
  60. }
  61. .playground{
  62. background-color:#dfdfdf;
  63. }
  64. .phone{
  65. margin:0 auto;
  66. overflow-x: hidden;
  67. overflow-y: hidden;
  68. }
  69. .horizontal_bars .wrapper {
  70. display: flex;
  71. flex-direction: column;
  72. flex-grow: 1;
  73. }
  74. .horizontal_bars .wrapperPhone {
  75. display: flex;
  76. flex-direction: row;
  77. flex-grow: 1;
  78. position: relative;
  79. min-height: 0;
  80. }
  81. .horizontal_bars .wrapper .sidebar{
  82. width: 311px;
  83. z-index: 1;
  84. align-self: flex-end;
  85. height: 100%;
  86. background: #F1F1F1;
  87. opacity: 1;
  88. }
  89. .horizontal_bars .wrapper .pageNav{
  90. background-color: white;
  91. height: 48px;
  92. background: #F8F8F8 0% 0% no-repeat;
  93. box-shadow: 0px 2px 6px #00000029;
  94. opacity: 1;
  95. z-index: 100;
  96. }