App.css 864 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. position: fixed;
  13. height: 48px;
  14. background: #F1F1F1;
  15. top: 0;
  16. width: 100%;
  17. color:#707070;
  18. box-shadow: 1px 1px rgb(0, 0, 0,0.16);
  19. }
  20. .horizontal_bars {
  21. display: flex;
  22. flex-direction: row;
  23. justify-content:space-between;
  24. margin-top: 50px
  25. }
  26. .horizontal_bars .toolbox{
  27. width:306px;
  28. background: #F1F1F1;
  29. z-index: 1;
  30. flex-shrink: 0;
  31. position: fixed;
  32. height: 100vh;
  33. }
  34. .horizontal_bars .sidebar{
  35. width: 311px;
  36. background: #F1F1F1;
  37. z-index: 1;
  38. flex-shrink: 0;
  39. position: fixed;
  40. right: 0;
  41. height: 100vh;
  42. }
  43. .playground{
  44. margin-top: 20px;
  45. height: 100vh;
  46. display: flex;
  47. justify-content:center;
  48. }
  49. .phone{
  50. margin:0 auto;
  51. }