App.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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-top: 10px;
  44. padding-bottom: 10px;
  45. padding-left:20px;
  46. width: 258px;
  47. overflow-y: scroll;
  48. overflow-x: hidden;
  49. }
  50. .horizontal_bars .sidebar{
  51. width: 311px;
  52. z-index: 1;
  53. flex-shrink: 0;
  54. background: #F1F1F1 0% 0% no-repeat padding-box;
  55. opacity: 1;
  56. overflow: scroll;
  57. }
  58. body {
  59. background: #dfdfdf;
  60. }
  61. .playground{
  62. background-color:#dfdfdf;
  63. }
  64. .phone{
  65. margin:0 auto;
  66. overflow-x: hidden;
  67. overflow-y: hidden;
  68. }
  69. .horizontal_bars .wrapper {
  70. display: flex;
  71. flex-direction: column;
  72. flex-grow: 1;
  73. }
  74. .horizontal_bars .wrapperPhone {
  75. display: flex;
  76. flex-direction: row;
  77. flex-grow: 1;
  78. position: relative;
  79. }
  80. .horizontal_bars .wrapper .sidebar{
  81. width: 311px;
  82. z-index: 1;
  83. align-self: flex-end;
  84. height: 100%;
  85. background: #F1F1F1;
  86. opacity: 1;
  87. }
  88. .horizontal_bars .wrapper .pageNav{
  89. background-color: white;
  90. height: 47px;
  91. background: #F8F8F8 0% 0% no-repeat;
  92. /*width:auto;*/
  93. box-shadow: 0px 1px 0px 0px #F8F8F8;
  94. opacity: 1;
  95. z-index: 1;
  96. }