App.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*.kourtina{
  2. z-index: 2;
  3. height: 100vh;
  4. position: fixed;
  5. top: 0;
  6. width: 100%;
  7. }*/
  8. .mainbar{
  9. z-index: 1;
  10. display: flex;
  11. justify-content: space-between;
  12. height: 48px;
  13. background: #F1F1F1;
  14. top: 0;
  15. width: 100%;
  16. border-bottom: 1px solid rgb(0, 0, 0,0.16);
  17. opacity: 1;
  18. }
  19. .horizontal_bars {
  20. display: flex;
  21. flex-direction: row;
  22. justify-content:space-between;
  23. }
  24. .horizontal_bars .toolbox{
  25. background: #F1F1F1;
  26. z-index: 1;
  27. flex-shrink: 0;
  28. position: absolute;
  29. height: calc(100vh - 50px);
  30. display: flex;
  31. flex-direction: row;
  32. }
  33. .horizontal_bars .toolbox .tool_icon_bar{
  34. width: 48px;
  35. background: #F1F1F1 0% 0% no-repeat padding-box;
  36. box-shadow: 1px 0px 1px rgb(0, 0, 0,0.16);
  37. }
  38. .horizontal_bars .toolbox .moduleBar{
  39. padding: 10px;
  40. overflow-y: scroll;
  41. overflow-x: hidden;
  42. }
  43. .horizontal_bars .sidebar{
  44. width: 311px;
  45. z-index: 1;
  46. flex-shrink: 0;
  47. position: absolute;
  48. right: 0;
  49. height: calc(100vh - 50px);
  50. background: #F1F1F1 0% 0% no-repeat padding-box;
  51. opacity: 1;
  52. overflow: scroll;
  53. }
  54. .playground{
  55. background-color:#dfdfdf;
  56. margin-top: 0px;
  57. height: calc(100vh - 50px);
  58. display: flex;
  59. flex-direction: column;
  60. }
  61. .phone{
  62. margin:0 auto;
  63. overflow-x: hidden;
  64. overflow-y: hidden;
  65. }
  66. .pageNav{
  67. background-color: white;
  68. margin-bottom: 10px;
  69. margin-left:285px;
  70. height: 47px;
  71. background: #F8F8F8 0% 0% no-repeat;
  72. width:auto;
  73. box-shadow: 0px 1px 0px 0px #F8F8F8;
  74. opacity: 1;
  75. }