App.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. position: fixed;
  13. height: 48px;
  14. background: #F1F1F1;
  15. top: 0;
  16. width: 100%;
  17. color:#707070;
  18. box-shadow: 1px 1px rgb(0, 0, 0,0.16);
  19. }
  20. .horizontal_bars {
  21. display: flex;
  22. flex-direction: row;
  23. justify-content:space-between;
  24. margin-top: 50px
  25. }
  26. .horizontal_bars .toolbox{
  27. background: #F1F1F1;
  28. z-index: 1;
  29. flex-shrink: 0;
  30. position: fixed;
  31. height: calc( 100vh - 50px );
  32. display: flex;
  33. flex-direction: row;
  34. }
  35. .horizontal_bars .toolbox .tool_icon_bar{
  36. width: 48px;
  37. background: #F1F1F1 0% 0% no-repeat padding-box;
  38. box-shadow: 1px 0px 1px rgb(0, 0, 0,0.16);
  39. }
  40. .horizontal_bars .toolbox .moduleBar{
  41. padding: 10px;
  42. overflow-y: scroll;
  43. overflow-x: hidden;
  44. }
  45. .horizontal_bars .sidebar{
  46. width: 311px;
  47. z-index: 1;
  48. flex-shrink: 0;
  49. position: fixed;
  50. right: 0;
  51. height: calc(100vh - 50px);
  52. background: #F1F1F1 0% 0% no-repeat padding-box;
  53. opacity: 1;
  54. }
  55. .playground{
  56. margin-top: 0px;
  57. height: calc(100vh - 50px);
  58. display: flex;
  59. justify-content:center;
  60. }
  61. .phone{
  62. margin:0 auto;
  63. }