Center.scss 831 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .page-center{
  2. display:flex;
  3. flex-direction: column;
  4. width:100vw;
  5. height:100vh;
  6. .xsschool{
  7. margin-top:0vh;
  8. margin-left:65px;
  9. .img{
  10. width:80px;
  11. height:60px;
  12. }
  13. }
  14. .section2{
  15. display: flex;
  16. flex-direction: row;
  17. .part1{
  18. .icon{
  19. margin-left:35px;
  20. margin-top:5vh;
  21. .img{
  22. width:150px;
  23. height:160px;
  24. }
  25. }
  26. }
  27. .part2{
  28. .icon{
  29. margin-top: 4vh;
  30. margin-left:45px;
  31. .img{
  32. width:135px;
  33. height:145px;
  34. }
  35. }
  36. }
  37. }
  38. .section3{
  39. display:flex;
  40. flex-direction: row;
  41. margin-top:0px;
  42. .part1{
  43. .icon{
  44. margin-left:0px;
  45. margin-top:12px;
  46. .img{
  47. width:200px;
  48. height:250px;
  49. }
  50. }
  51. }
  52. .part2{
  53. .icon{
  54. margin-left:5px;
  55. margin-top:-30px;
  56. .img{
  57. width:200px;
  58. height:200px;
  59. }
  60. }
  61. }
  62. }
  63. }