App.css 1.7 KB

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