koishi-plugin-rocom 1.0.8 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client.d.ts +4 -2
- package/lib/client.js +18 -17
- package/lib/commands/query.js +0 -63
- package/lib/index.js +1 -2
- package/lib/render-templates/player-search/index.html +68 -60
- package/lib/render-templates/player-search/style.css +300 -192
- package/lib/render.js +0 -3
- package/package.json +1 -1
- package/readme.md +3 -4
- package/lib/render-templates/student/index.html +0 -95
- package/lib/render-templates/student/style.css +0 -255
- package/lib/render-templates/student-perks/index.html +0 -78
- package/lib/render-templates/student-perks/style.css +0 -238
- package/lib/render-templates/student-state/index.html +0 -52
- package/lib/render-templates/student-state/style.css +0 -157
|
@@ -1,157 +0,0 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "rocom-state";
|
|
3
|
-
src: url("../../ttf/HYWenHei-85W-1.ttf") format("truetype");
|
|
4
|
-
font-display: swap;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
html,
|
|
8
|
-
body {
|
|
9
|
-
margin: 0;
|
|
10
|
-
padding: 26px;
|
|
11
|
-
background: #efe6d8;
|
|
12
|
-
display: inline-block;
|
|
13
|
-
font-family: "rocom-state", "Microsoft YaHei", "PingFang SC", sans-serif;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.state-page {
|
|
17
|
-
width: 1180px;
|
|
18
|
-
padding: 34px 36px 30px;
|
|
19
|
-
box-sizing: border-box;
|
|
20
|
-
border-radius: 28px;
|
|
21
|
-
color: #322618;
|
|
22
|
-
background:
|
|
23
|
-
linear-gradient(rgba(40, 29, 18, 0.10), rgba(40, 29, 18, 0.10)),
|
|
24
|
-
url("../../img/ercode-bg.D1ccSQKH.png") center/cover no-repeat;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.page-header {
|
|
28
|
-
padding-bottom: 18px;
|
|
29
|
-
border-bottom: 2px dashed rgba(141, 106, 68, 0.28);
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.page-title {
|
|
33
|
-
font-size: 44px;
|
|
34
|
-
line-height: 1.1;
|
|
35
|
-
font-weight: 800;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
.page-subtitle {
|
|
39
|
-
margin-top: 10px;
|
|
40
|
-
font-size: 22px;
|
|
41
|
-
line-height: 1.4;
|
|
42
|
-
color: #6d5944;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
.summary-grid {
|
|
46
|
-
display: grid;
|
|
47
|
-
grid-template-columns: repeat(3, 1fr);
|
|
48
|
-
gap: 16px;
|
|
49
|
-
margin-top: 22px;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.summary-card,
|
|
53
|
-
.hero-card,
|
|
54
|
-
.detail-card,
|
|
55
|
-
.command-hint {
|
|
56
|
-
border: 1px solid rgba(141, 106, 68, 0.16);
|
|
57
|
-
border-radius: 20px;
|
|
58
|
-
background: rgba(255, 252, 247, 0.82);
|
|
59
|
-
box-shadow: 0 10px 26px rgba(83, 58, 35, 0.08);
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.hero-card {
|
|
63
|
-
margin-top: 22px;
|
|
64
|
-
padding: 24px 26px;
|
|
65
|
-
background:
|
|
66
|
-
linear-gradient(135deg, rgba(237, 179, 89, 0.24), rgba(255, 251, 245, 0.88)),
|
|
67
|
-
rgba(255, 252, 247, 0.86);
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
.hero-title {
|
|
71
|
-
font-size: 20px;
|
|
72
|
-
color: #8b735b;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.hero-value {
|
|
76
|
-
margin-top: 8px;
|
|
77
|
-
font-size: 42px;
|
|
78
|
-
line-height: 1.15;
|
|
79
|
-
font-weight: 800;
|
|
80
|
-
color: #2e2418;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
.hero-subvalue {
|
|
84
|
-
margin-top: 8px;
|
|
85
|
-
font-size: 22px;
|
|
86
|
-
color: #6d5944;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.summary-card {
|
|
90
|
-
padding: 18px 20px;
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
.summary-label {
|
|
94
|
-
font-size: 18px;
|
|
95
|
-
color: #8b735b;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
.summary-value {
|
|
99
|
-
margin-top: 10px;
|
|
100
|
-
font-size: 30px;
|
|
101
|
-
line-height: 1.2;
|
|
102
|
-
font-weight: 800;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
.section-title {
|
|
106
|
-
margin: 28px 0 16px;
|
|
107
|
-
font-size: 28px;
|
|
108
|
-
font-weight: 800;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.detail-card {
|
|
112
|
-
overflow: hidden;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.detail-row {
|
|
116
|
-
display: grid;
|
|
117
|
-
grid-template-columns: 260px 1fr;
|
|
118
|
-
gap: 16px;
|
|
119
|
-
padding: 16px 20px;
|
|
120
|
-
border-bottom: 1px solid rgba(141, 106, 68, 0.10);
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.detail-row:last-child {
|
|
124
|
-
border-bottom: none;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.detail-label {
|
|
128
|
-
font-size: 21px;
|
|
129
|
-
font-weight: 700;
|
|
130
|
-
color: #6d5944;
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
.detail-value {
|
|
134
|
-
font-size: 21px;
|
|
135
|
-
color: #322618;
|
|
136
|
-
word-break: break-word;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.empty-text {
|
|
140
|
-
padding: 26px;
|
|
141
|
-
font-size: 22px;
|
|
142
|
-
color: #6d5944;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
.command-hint {
|
|
146
|
-
margin-top: 20px;
|
|
147
|
-
padding: 14px 18px;
|
|
148
|
-
font-size: 20px;
|
|
149
|
-
color: #6d5944;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.footer {
|
|
153
|
-
margin-top: 18px;
|
|
154
|
-
text-align: center;
|
|
155
|
-
font-size: 16px;
|
|
156
|
-
color: rgba(113, 93, 73, 0.88);
|
|
157
|
-
}
|