App.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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 - 15px);
  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. }
  53. .playground{
  54. background-color:#dfdfdf;
  55. margin-top: 0px;
  56. height: calc(100vh - 5px);
  57. display: flex;
  58. flex-direction: column;
  59. }
  60. .phone{
  61. margin:0 auto;
  62. }
  63. .pageNav{
  64. background-color: white;
  65. margin-bottom: 10px;
  66. margin-left:285px;
  67. height: 47px;
  68. background: #F8F8F8 0% 0% no-repeat;
  69. width:100%;
  70. box-shadow: 0px 1px 0px 0px #F8F8F8;
  71. opacity: 1;
  72. }