San3yuan | 03ab064 | 2025-04-29 18:00:25 +0800 | [diff] [blame] | 1 | .panel{ |
2 | background-color: var(--card-bg); | ||||
3 | height:100%; | ||||
4 | width:100%; | ||||
5 | } | ||||
6 | |||||
7 | .header{ | ||||
8 | border-bottom:1px solid var(--border-color); | ||||
9 | box-shadow: 1px; | ||||
10 | height:10%; | ||||
11 | width:100%; | ||||
12 | display:flex; | ||||
13 | justify-content: space-between; | ||||
14 | } | ||||
15 | |||||
16 | .header .title{ | ||||
17 | font:bold ; | ||||
18 | color:var(--text-color); | ||||
19 | |||||
20 | } | ||||
21 | |||||
22 | .header .more{ | ||||
23 | font:bold ; | ||||
24 | color:var(--text-color); | ||||
25 | } | ||||
26 | |||||
27 | .content .item{ | ||||
28 | display:flex; | ||||
29 | justify-content:space-between; | ||||
30 | |||||
31 | } | ||||
32 | .content .item .text{ | ||||
33 | width:70%; | ||||
34 | overflow-x:hidden; | ||||
35 | color:var(--text-color); | ||||
36 | } | ||||
37 | |||||
38 |