| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- // page
- .page-wrapper {
- width: 100%;
- flex-direction: column;
- color: @text-black;
- background-color: @bg-grey;
- }
- .page-container {
- flex: 1;
- .page-column;
- }
- .page-container-white {
- flex: 1;
- width: 100%;
- flex-direction: column;
- background-color: @white;
- }
- .page-column {
- width: 100%;
- flex-direction: column;
- }
- // text
- .text {
- font-size: 6 * @size-factor;
- }
- .text-black {
- font-size: 6 * @size-factor;
- color: @text-black;
- }
- .text-warning {
- font-size: 6 * @size-factor;
- color: @warning;
- }
- .text-primary {
- font-size: 6 * @size-factor;
- color: @brand;
- }
- .text-remark {
- font-size: 5 * @size-factor;
- color: @text-grey;
- }
- .text-remark-black {
- font-size: 5 * @size-factor;
- color: @text-black;
- }
- .text-remark-primary {
- font-size: 5 * @size-factor;
- color: @brand;
- }
- .text-remark-big {
- font-size: 6 * @size-factor;
- color: @text-grey;
- }
- .text-remark-warning {
- font-size: 6 * @size-factor;
- color: @warning;
- }
- .text-title {
- font-size: 7 * @size-factor;
- color: @text-black;
- }
- .title {
- font-size: 10 * @size-factor;
- color: @text-black;
- font-weight: bold;
- }
- .list-title {
- width: 100%;
- align-content: center;
- padding: @gap-3 0;
- .text-title;
- .border-bottom-mixins();
- }
- // button
- .button {
- height: 10 * @size-factor;
- width: 100%;
- background-color: #e2efff;
- padding: 0 3 * @size-factor;
- color: @brand;
- font-size: 5 * @size-factor;
- text-align: center;
- border-radius: 1 * @size-factor;
- }
- // flex
- .flex-1 {
- flex: 1;
- }
- .space-between-line {
- width: 100%;
- .flex-box-mixins(row, space-between, flex-start);
- }
- // section
- .section-container {
- width: 100%;
- flex-direction: column;
- }
- .section {
- flex-direction: column;
- padding-bottom: @gap-3;
- background-color: @white;
- }
- .section-title {
- width: 100%;
- align-content: center;
- padding: @gap-3 @gap-4;
- .flex-box-mixins(row, space-between, center);
- .section-title-line {
- width: 6px;
- background-color: @brand;
- margin: 8px @gap-1 8px 0;
- }
- }
- .section-title-bordered {
- .section-title;
- background-color: @white;
- .border-bottom-mixins();
- }
- .section-content {
- flex-wrap: wrap;
- padding: 0 @gap-3;
- }
- .section-label {
- font-size: 25px;
- border-radius: 6px;
- height: 80px;
- width: 300px;
- text-align: center;
- margin: @gap-1;
- background-color: @bg-grey;
- }
- .section-item-text {
- font-size: 25px;
- height: 60px;
- text-align: center;
- }
- // list
- .list-container {
- background-color: @white;
- width: 100%;
- flex: 1;
- padding: 0 @gap-4;
- }
- .list-item {
- width: 100%;
- padding: @gap-3 0;
- border-bottom-width: 1px;
- border-bottom-color: @border-grey;
- border-style: solid;
- .list-rank {
- width: 50px;
- height: 50px;
- background-color: @bg-grey;
- border-radius: 25px;
- margin-right: @gap-1;
- .list-rank-text {
- width: 100%;
- text-align: center;
- color: @text-grey;
- }
- }
- }
- .load-status {
- padding: @gap-2;
- justify-content: center;
- .load-status-text {
- color: @text-grey;
- font-size: 6 * @size-factor;
- }
- }
- // titlebar, search
- .title-bar {
- background-color: @white;
- padding: @gap-3 @gap-4;
- .flex-box-mixins(row, space-between, flex-start);
- .border-bottom-mixins();
- }
- .title-bar-noline {
- background-color: @white;
- padding: @gap-3 @gap-4;
- .flex-box-mixins(row, space-between, flex-start);
- }
- .search {
- background-color: @input-grey;
- flex: 1;
- height: 70px;
- padding: 0 @gap-2;
- border-radius: 8px;
- justify-content: center;
- align-content: center;
- .search-icon {
- width: 40px;
- height: 70px;
- font-size: 25px;
- color: @brand;
- }
- .search-input {
- flex: 1;
- font-size: 30px;
- }
- }
- // bottom-bar, btn
- .bottom-bar {
- padding: @gap-3 @gap-4;
- .flex-box-mixins(row, space-between, center);
- }
- .btn-primary {
- color: @brand;
- border: 1px solid @brand;
- border-radius: 5px;
- padding: 15px 0;
- width: 200px;
- text-align: center;
- }
- .btn-disabled {
- color: @text-grey;
- border-color: @text-grey;
- }
- // comment-page
- .comment-page {
- .textarea {
- width: 100%;
- height: 300px;
- border: 1px solid @border-grey;
- padding: @gap-2;
- font-size: 6 * @size-factor;
- }
- .text-line {
- padding: 0 @gap-4;
- width: 100%;
- }
- .btn-line {
- padding: @gap-4;
- width: 100%;
- justify-content: flex-end;
- }
- .publish-btn {
- width: 150px;
- height: 80px;
- color: @white;
- background-color: @brand;
- border-radius: 4px;
- text-align: center;
- }
- }
|