App.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /*.kourtina{
  2. z-index: 2;
  3. height: 100vh;
  4. position: fixed;
  5. top: 0;
  6. width: 100%;
  7. }*/
  8. .main{
  9. background-color:#dfdfdf;
  10. display: flex;
  11. height: 100vh;
  12. width: 100vw;
  13. flex-direction: column;
  14. }
  15. .mainbar{
  16. z-index: 1;
  17. display: flex;
  18. justify-content: space-between;
  19. height: 48px;
  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. height: calc(100vh - 50px);
  36. display: flex;
  37. flex-direction: row;
  38. }
  39. .horizontal_bars .toolbox .tool_icon_bar{
  40. width: 48px;
  41. background: #F1F1F1 0% 0% no-repeat padding-box;
  42. box-shadow: 1px 0px 1px rgb(0, 0, 0,0.16);
  43. }
  44. .horizontal_bars .toolbox .moduleBar{
  45. padding-top: 10px;
  46. padding-bottom: 10px;
  47. padding-left:20px;
  48. width: 258px;
  49. overflow-y: scroll;
  50. overflow-x: hidden;
  51. }
  52. .playground{
  53. background-color:#dfdfdf;
  54. margin-top: 0px;
  55. display: flex;
  56. position: absolute;
  57. top:150px;
  58. left:0;
  59. right: 0;
  60. bottom: 0;
  61. flex-direction: column;
  62. }
  63. .phone{
  64. margin:0 auto;
  65. overflow-x: hidden;
  66. overflow-y: hidden;
  67. }
  68. .horizontal_bars .wrapper {
  69. display: flex;
  70. flex-direction: column;
  71. flex-grow: 1;
  72. }
  73. .horizontal_bars .wrapper .sidebar{
  74. width: 311px;
  75. z-index: 1;
  76. align-self: flex-end;
  77. height: 100%;
  78. background: #F1F1F1;
  79. opacity: 1;
  80. }
  81. .horizontal_bars .wrapper .pageNav{
  82. background-color: white;
  83. height: 47px;
  84. background: #F8F8F8 0% 0% no-repeat;
  85. /*width:auto;*/
  86. box-shadow: 0px 1px 0px 0px #F8F8F8;
  87. opacity: 1;
  88. z-index: 1;
  89. }