App.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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: 10px;
  46. width: 311px;
  47. overflow-y: scroll;
  48. overflow-x: hidden;
  49. }
  50. .playground{
  51. background-color:#dfdfdf;
  52. margin-top: 0px;
  53. display: flex;
  54. position: absolute;
  55. top:150px;
  56. left:0;
  57. right: 0;
  58. bottom: 0;
  59. flex-direction: column;
  60. }
  61. .phone{
  62. margin:0 auto;
  63. overflow-x: hidden;
  64. overflow-y: hidden;
  65. }
  66. .horizontal_bars .wrapper {
  67. display: flex;
  68. flex-direction: column;
  69. flex-grow: 1;
  70. }
  71. .horizontal_bars .wrapper .sidebar{
  72. width: 311px;
  73. z-index: 1;
  74. align-self: flex-end;
  75. height: 100%;
  76. background: #F1F1F1;
  77. opacity: 1;
  78. }
  79. .horizontal_bars .wrapper .pageNav{
  80. background-color: white;
  81. height: 47px;
  82. background: #F8F8F8 0% 0% no-repeat;
  83. /*width:auto;*/
  84. box-shadow: 0px 1px 0px 0px #F8F8F8;
  85. opacity: 1;
  86. z-index: 1;
  87. }