1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .home-container {
- height: 100%;
- min-height: 550px;
- }
- %box-basic {
- width: 70%;
- height: 700px;
- padding: 20px;
- margin: 0 auto;
- border-radius: 20px;
- box-shadow: inset 0 0 5px 1px #8b8a8a;
- }
- .createTask-container {
- @extend %box-basic;
- position: relative;
- .title {
- margin: 20px;
- }
- .title2 {
- text-align: center;
- }
- .btn {
- position: absolute;
- bottom: 200px;
- // bottom: 20px;
- }
- .back {
- left: 200px;
- }
- .next {
- right: 200px;
- }
- }
- .logPage-container {
- position: relative;
- @extend %box-basic;
- .btn {
- position: absolute;
- right: 100px;
- bottom: 50px;
- }
- .log {
- width: 80%;
- height: 550px; /* 根据需要调整 */
- padding: 10px;
- margin-left: 100px;
- overflow-y: auto;
- font-family: 'Courier New', monospace;
- color: #4aff84;
- background-color: #1e1e1e;
- }
- .p {
- padding-left: 10px;
- margin-bottom: 5px;
- border-left: 3px solid #4aff84;
- animation: fade-in 1s;
- }
- @keyframes fade-in {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
- }
- }
- .trainResult-container {
- @extend %box-basic;
- .table-box {
- height: 650px;
- margin-top: -15px;
- }
- }
|