_section.scss 905 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. #page{
  2. height: 100%;
  3. .navbar{
  4. width: 100%;
  5. height: 50px;
  6. }
  7. #start{
  8. width: 100%;
  9. height: calc(100% - 50px);
  10. // display: grid;
  11. //
  12. .blocs{
  13. height: calc(100vh/2 - 25px);
  14. overflow-y: auto;
  15. &:nth-child(1){
  16. background: red;
  17. }
  18. &:nth-child(2){
  19. background: pink;
  20. }
  21. &:nth-child(3){
  22. background: brown;
  23. }
  24. &:nth-child(4){
  25. background: blue;
  26. }
  27. &:nth-child(5){
  28. background: green;
  29. }
  30. &:nth-child(6){
  31. background: yellow;
  32. }
  33. }
  34. }
  35. }
  36. .top, .bottom{
  37. display: inline-grid;
  38. grid-template-columns: auto auto auto;
  39. }
  40. .handler{
  41. width: 50px;
  42. height: 50px;
  43. border-radius: 25px;
  44. background: red;
  45. position: absolute;
  46. left : calc((100%/3) - 25px);
  47. top: 50%;
  48. z-index: 999;
  49. }