index.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .home-container {
  2. height: 100%;
  3. min-height: 550px;
  4. }
  5. %box-basic {
  6. width: 70%;
  7. height: 700px;
  8. padding: 20px;
  9. margin: 0 auto;
  10. border-radius: 20px;
  11. box-shadow: inset 0 0 5px 1px #8b8a8a;
  12. }
  13. .createTask-container {
  14. @extend %box-basic;
  15. position: relative;
  16. .title {
  17. margin: 20px;
  18. }
  19. .title2 {
  20. text-align: center;
  21. }
  22. .btn {
  23. position: absolute;
  24. bottom: 200px;
  25. // bottom: 20px;
  26. }
  27. .back {
  28. left: 200px;
  29. }
  30. .next {
  31. right: 200px;
  32. }
  33. }
  34. .logPage-container {
  35. position: relative;
  36. @extend %box-basic;
  37. .btn {
  38. position: absolute;
  39. right: 100px;
  40. bottom: 50px;
  41. }
  42. .log {
  43. width: 80%;
  44. height: 550px; /* 根据需要调整 */
  45. padding: 10px;
  46. margin-left: 100px;
  47. overflow-y: auto;
  48. font-family: 'Courier New', monospace;
  49. color: #4aff84;
  50. background-color: #1e1e1e;
  51. }
  52. .p {
  53. padding-left: 10px;
  54. margin-bottom: 5px;
  55. border-left: 3px solid #4aff84;
  56. animation: fade-in 1s;
  57. }
  58. @keyframes fade-in {
  59. from {
  60. opacity: 0;
  61. }
  62. to {
  63. opacity: 1;
  64. }
  65. }
  66. }
  67. .trainResult-container {
  68. @extend %box-basic;
  69. .table-box {
  70. height: 650px;
  71. margin-top: -15px;
  72. }
  73. }