1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
| .banner-bg {
| position: fixed;
| width: 100%;
| height: 100vh;
| background: linear-gradient(#009e91, #00c4b3);
| }
|
| .title {
| color: white;
| margin-left: 4px;
| margin-right: 4px;
| font-size: 18px;
| font-weight: 600;
| margin-top: 8px;
| margin-bottom: 4px;
| display: flex;
| align-items: center;
| }
|
| .title image{
| width: 24px;
| height: 24px;
| }
|
| .sub-title {
| color: white;
| margin-left: 4px;
| margin-right: 4px;
| font-size: 14px;
| margin-top: 8px;
| margin-bottom: 4px;
| }
|
| .card-subtask {
| position: relative;
| color: #009e91;
| background-color: rgba(255, 255, 255, 0.918);
| margin: 4px 4px;
| border-radius: 4px;
| padding: 4px;
| font-size: 14px;
| }
|
| .text-1 {
| font-size: 16px;
| font-weight: 600;
| }
|
| .text-2 {
| color: var(--fyui-btn-color_1);
| }
|
| button {
| white-space: nowrap;
| background-color: var(--fyui-btn-color_1);
| margin-right: 0px !important;
| max-width: 60px;
| font-size: 12px;
| padding: 8px;
| color: white;
| position: relative;
| }
|
| .no-data {
| height: initial;
| }
|
| .no-data image {
| margin-top: initial;
| }
|
| .load-more {
| text-align: center;
| font-size: 12px;
| color: var(--fyui-BG_1);
| padding: 8px;
| }
|
|