_stu-box.scss 656 B

12345678910111213141516171819202122232425262728293031323334
  1. @import "_stu-box_header.scss";
  2. .box {
  3. width: 100%;
  4. position: relative;
  5. font-family: 'Source Han Sans';
  6. background: none;
  7. display: flex;
  8. flex-direction: column;
  9. .box-title {
  10. width: 100%;
  11. text-align: center;
  12. font-weight: 600;
  13. font-size: 38px;
  14. color: #fff;
  15. margin-top: 6px
  16. }
  17. .box-body {
  18. margin: 10px 30px 40px;
  19. border: 2px solid #fff;
  20. border-radius: 5px;
  21. }
  22. .body-card {
  23. background: #e9f2fd;
  24. border-radius: 5px;
  25. padding: 10px;
  26. margin-bottom: 10px;
  27. display: flex;
  28. position: relative;
  29. }
  30. }