diff options
Diffstat (limited to 'frontend/src/components/pages/summary.css')
| -rw-r--r-- | frontend/src/components/pages/summary.css | 226 |
1 files changed, 226 insertions, 0 deletions
diff --git a/frontend/src/components/pages/summary.css b/frontend/src/components/pages/summary.css index 47c3f4b..c99a0bf 100644 --- a/frontend/src/components/pages/summary.css +++ b/frontend/src/components/pages/summary.css | |||
| @@ -449,7 +449,233 @@ text-align: center; | |||
| 449 | .leaderboard-record:last-child{margin: 10px 20px 10px 20px;} | 449 | .leaderboard-record:last-child{margin: 10px 20px 10px 20px;} |
| 450 | 450 | ||
| 451 | 451 | ||
| 452 | #section7{ | ||
| 453 | margin: 40px 0 20px 0; | ||
| 454 | background-color: #202232; | ||
| 455 | border-radius: 24px; | ||
| 456 | padding: 10px; | ||
| 457 | } | ||
| 458 | |||
| 459 | #discussion-search{ | ||
| 460 | height: 46px; | ||
| 461 | width: 100%; | ||
| 462 | display: grid; | ||
| 463 | grid-template-columns: 1fr 100px; | ||
| 464 | margin: 0 0 20px 0; | ||
| 465 | } | ||
| 466 | #discussion-search>input::placeholder{color: #aaa;} | ||
| 467 | #discussion-search>input{ | ||
| 468 | background-color: #2b2e46; | ||
| 469 | font-size: 20px; | ||
| 470 | padding-left: 10px; | ||
| 471 | color: white; | ||
| 472 | border: 0; | ||
| 473 | border-radius: 16px 0 0 16px; | ||
| 474 | font-family: inherit; | ||
| 475 | } | ||
| 476 | #discussion-search>div>button:hover{filter: brightness(75%);} | ||
| 477 | #discussion-search>div>button{ | ||
| 478 | padding: 7px 16px; | ||
| 479 | margin: 8px 0; | ||
| 480 | border: 0; | ||
| 481 | font-size: 16px; | ||
| 482 | border-radius: 24px; | ||
| 483 | display: block; | ||
| 484 | background-color:#3c91e6; | ||
| 485 | font-family: inherit; | ||
| 486 | font-weight: bold; | ||
| 487 | cursor: pointer; | ||
| 488 | color: white; | ||
| 489 | |||
| 490 | transition: filter .2s; | ||
| 491 | } | ||
| 492 | #discussion-search>div{ | ||
| 493 | background-color: #2b2e46; | ||
| 494 | border-radius: 0 16px 16px 0; | ||
| 495 | } | ||
| 496 | #discussion-post>button:nth-child(1)>span>b{font-size: 18px;color:#cdcfdf;font-weight: lighter;} | ||
| 497 | #discussion-post>button:nth-child(1){ | ||
| 498 | background-color: #2b2e46; | ||
| 499 | display: grid; | ||
| 500 | grid-template-columns: minmax(0, 1fr) 150px; | ||
| 501 | |||
| 502 | border-radius: 16px; | ||
| 503 | padding: 16px 12px; | ||
| 504 | margin: 8px 0 0 0; | ||
| 505 | border: 0; | ||
| 506 | width: 100%; height: 100px; | ||
| 507 | text-align: start; | ||
| 508 | white-space: nowrap; | ||
| 509 | color: #cdcfdf; | ||
| 510 | cursor: pointer; | ||
| 511 | overflow: hidden; | ||
| 512 | } | ||
| 513 | #discussion-post>button:nth-child(1)>span:nth-child(1){font-size: 32px;} | ||
| 514 | #discussion-post>button:nth-child(1)>span:nth-child(3){color: #aaa; font-size: 18px;} | ||
| 515 | #discussion-post>button:nth-child(1)>span:nth-child(4){ | ||
| 516 | opacity: .7; | ||
| 517 | height: 40px; | ||
| 518 | display: flex; | ||
| 519 | place-items: end; | ||
| 520 | justify-content: end; | ||
| 521 | } | ||
| 522 | |||
| 523 | #discussion-post{height: 100px;} | ||
| 524 | #discussion-post>button>button:hover{filter: brightness(75%); } | ||
| 525 | #discussion-post>button>button{ | ||
| 526 | padding: 7px 16px; | ||
| 527 | |||
| 528 | border: 0; | ||
| 529 | font-size: 16px; | ||
| 530 | border-radius: 24px; | ||
| 531 | background-color:#e52d04; | ||
| 532 | font-family: BarlowSemiCondensed-Regular; | ||
| 533 | font-weight: bold; | ||
| 534 | cursor: pointer; | ||
| 535 | color: white; | ||
| 536 | |||
| 537 | transition: filter .2s; | ||
| 538 | } | ||
| 539 | |||
| 540 | |||
| 541 | #discussion-create>div{ | ||
| 542 | display: grid; | ||
| 543 | text-align: start; | ||
| 544 | } | ||
| 545 | #discussion-create{ | ||
| 546 | display: grid; | ||
| 547 | grid-template-columns: 1fr 40px; | ||
| 548 | height: auto; | ||
| 549 | word-wrap: break-word; | ||
| 550 | } | ||
| 551 | |||
| 552 | #discussion-create>span{padding-left: 20px;} | ||
| 553 | #discussion-create>div>input::placeholder{color: #aaa;} | ||
| 554 | #discussion-create>div>input{ | ||
| 555 | background-color: #2b2e46; | ||
| 556 | font-size: 20px; | ||
| 557 | padding-left: 10px; | ||
| 558 | margin-top: 10px; | ||
| 559 | height: 32px; | ||
| 560 | color: white; | ||
| 561 | border: 0; | ||
| 562 | font-family: inherit; | ||
| 563 | } | ||
| 564 | #discussion-create>div>input:nth-child(2){font-size: 16px;} | ||
| 452 | 565 | ||
| 566 | #discussion-create-button:hover{filter: brightness(75%);} | ||
| 567 | #discussion-create-button{ | ||
| 568 | padding: 7px 16px; | ||
| 569 | margin: 8px 0 0 0; | ||
| 570 | border: 0; | ||
| 571 | font-size: 16px; | ||
| 572 | border-radius: 24px; | ||
| 573 | |||
| 574 | background-color:#3c91e6; | ||
| 575 | font-family: inherit; | ||
| 576 | font-weight: bold; | ||
| 577 | cursor: pointer; | ||
| 578 | color: white; | ||
| 579 | width: min-content; | ||
| 580 | grid-column: 1 / span 2; | ||
| 581 | |||
| 582 | |||
| 583 | transition: filter .2s; | ||
| 584 | } | ||
| 585 | |||
| 586 | |||
| 587 | #discussion-thread>div:nth-child(1){ | ||
| 588 | display: grid; | ||
| 589 | grid-template-columns: 1fr 40px; | ||
| 590 | height: auto; | ||
| 591 | padding: 0 0 10px 20px; | ||
| 592 | word-wrap: break-word; | ||
| 593 | } | ||
| 594 | |||
| 595 | #discussion-create>button:nth-child(2), | ||
| 596 | #discussion-thread>div>button{ | ||
| 597 | height: 40px; | ||
| 598 | float:inline-end; | ||
| 599 | color:#cdcfdf; | ||
| 600 | background-color: #0000; | ||
| 601 | border: 0; | ||
| 602 | font-size: 38px; | ||
| 603 | cursor: pointer; | ||
| 604 | } | ||
| 605 | |||
| 606 | |||
| 607 | #discussion-thread>div:nth-child(2)>img{ | ||
| 608 | width: 60px; height: 60px; | ||
| 609 | border-radius: 100px; | ||
| 610 | margin: 20px 0 0 0; | ||
| 611 | } | ||
| 612 | #discussion-thread>div:nth-child(2)>div{ | ||
| 613 | height: max-content; | ||
| 614 | padding: 20px 0 0 10px; | ||
| 615 | display: inline-grid; | ||
| 616 | grid-template-columns: min-content 1fr ; | ||
| 617 | overflow: hidden; | ||
| 618 | |||
| 619 | } | ||
| 620 | #discussion-thread>div:nth-child(2)>div>span:nth-child(1){font-weight: bold;height: 30px;} | ||
| 621 | #discussion-thread>div:nth-child(2)>div>span:nth-child(2){ | ||
| 622 | opacity: 0.6; | ||
| 623 | height: 30px; | ||
| 624 | font-size: 80%; | ||
| 625 | padding-left: 10px; | ||
| 626 | } | ||
| 627 | #discussion-thread>div:nth-child(2)>div>span:nth-child(3){ | ||
| 628 | grid-column: 1 / span 2; | ||
| 629 | height: max-content; | ||
| 630 | word-wrap: break-word; | ||
| 631 | } | ||
| 632 | #discussion-thread>div:nth-child(2){ | ||
| 633 | display: grid; | ||
| 634 | grid-template-columns: 60px 1fr; | ||
| 635 | font-size: 20px; | ||
| 636 | max-height: 522px; | ||
| 637 | overflow-y: auto; | ||
| 638 | } | ||
| 639 | |||
| 640 | |||
| 641 | #discussion-send{ | ||
| 642 | height: 48px; | ||
| 643 | width: 100%; | ||
| 644 | display: grid; | ||
| 645 | grid-template-columns: 1fr 80px; | ||
| 646 | margin: 10px 0 0 0; | ||
| 647 | } | ||
| 648 | #discussion-send>input::placeholder{color: #aaa;} | ||
| 649 | #discussion-send>input{ | ||
| 650 | background-color: #2b2e46; | ||
| 651 | padding-left: 10px; | ||
| 652 | color: white; | ||
| 653 | border: 0; | ||
| 654 | font-size: 20px; | ||
| 655 | border-radius: 16px 0 0 16px; | ||
| 656 | font-family: inherit; | ||
| 657 | } | ||
| 658 | #discussion-send>div{ | ||
| 659 | background-color: #2b2e46; | ||
| 660 | border-radius: 0 16px 16px 0; | ||
| 661 | |||
| 662 | } | ||
| 663 | #discussion-send>div>button:hover{ filter: brightness(75%);} | ||
| 664 | #discussion-send>div>button{ | ||
| 665 | padding: 7px 20px; | ||
| 666 | margin: 8px 0; | ||
| 667 | font-size: 16px; | ||
| 668 | border: 0; | ||
| 669 | border-radius: 24px; | ||
| 670 | display: block; | ||
| 671 | background-color:#3c91e6; | ||
| 672 | font-family: inherit; | ||
| 673 | font-weight: bold; | ||
| 674 | cursor: pointer; | ||
| 675 | color: white; | ||
| 676 | |||
| 677 | transition: filter .2s; | ||
| 678 | } | ||
| 453 | 679 | ||
| 454 | 680 | ||
| 455 | 681 | ||