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