App.css 1.8 KB

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