这是一个对脚本界面进行更改的代码,原脚本是@GMagels 大大写的勋章触发记录他来了-本地发回帖账本PAUSE(EA版)
我按照我自己的喜好编写了一款皮肤,更换了背景以及界面颜色,效果如图所示
使用方法:
在原脚本找到var styles = ` `; 替换掉` `内的内容即可
- /* 设置整体背景为古老纸张或暗色的质感背景 */
- body {
- background: url('https://i.imgur.com/vVb6TYs.png') repeat center center fixed;
- color: #f3eacb;
- font-family: '微软雅黑', sans-serif;
- }
- /* 容器通用样式 */
- .main-container {
- display: grid;
- grid-template-columns: 1fr 3fr; /* 左边工具箱与右侧主内容的比例 */
- gap: 20px;
- height: 100vh;
- padding: 20px;
- }
- /* 工具箱部分 */
- #fixedBox {
- grid-column: 1; /* 左侧第一列 */
- background: rgba(50, 50, 50, 0.9);
- color: #f3eacb;
- padding: 15px;
- border: 3px solid #6b4e18;
- border-radius: 10px;
- box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
- height: fit-content;
- max-height: 90vh;
- overflow-y: auto;
- }
- /* 中间部分的汇总信息 */
- .header-container {
- grid-column: 2; /* 在右侧第二列 */
- text-align: center; /* 居中对齐以适配按钮位置 */
- margin-bottom: 20px;
- }
- /* “显示/隐藏工具箱”按钮 */
- #toggleToolBoxBtn {
- display: block;
- margin: 0 auto 10px auto;
- padding: 10px 15px;
- background: #6b4e18;
- color: #f3eacb;
- border: 2px solid #3b2d12;
- border-radius: 5px;
- font-weight: bold;
- font-family: '微软雅黑', sans-serif;
- cursor: pointer;
- transition: all 0.3s;
- }
- #toggleToolBoxBtn:hover {
- background: #8a613a;
- border: 2px solid #502d1a;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
- }
- /* 当前记录汇总部分 */
- #summaryTable {
- grid-column: 2; /* 与按钮在同一列 */
- background: rgba(50, 50, 50, 0.9);
- color: #f3eacb;
- padding: 15px;
- border: 3px solid #6b4e18;
- border-radius: 10px;
- box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
- font-size: 1.5em; /* 增大字号 */
- margin-top: 0; /* 紧跟着按钮显示 */
- }
- /* 右侧的数据表格部分 */
- .data-container {
- grid-column: 2; /* 与按钮和记录汇总在同一列 */
- background: rgba(50, 50, 50, 0.8);
- padding: 15px;
- border: 3px solid #6b4e18;
- border-radius: 10px;
- box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.7);
- overflow-x: auto;
- margin-top: 10px; /* 增加与汇总的间距 */
- }
- /* 表格样式 */
- #tableBox table, #summaryTable table {
- width: 100%;
- margin: 20px auto;
- border-collapse: collapse;
- background: #3b2d12;
- color: #f3eacb;
- font-family: '微软雅黑', sans-serif;
- border: 3px solid #6b4e18;
- box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
- }
- th, td {
- border: 2px solid #502d1a;
- padding: 10px;
- text-align: center;
- }
- th {
- background: #6b4e18;
- font-weight: bold;
- }
- /* 按钮样式 */
- #exportBtn, #importBtn, #deleteBtn, #showAllBtn {
- display: block;
- margin: 10px auto;
- padding: 10px 15px;
- background: #6b4e18;
- color: #f3eacb;
- border: 2px solid #3b2d12;
- border-radius: 5px;
- font-weight: bold;
- font-family: '微软雅黑', sans-serif;
- cursor: pointer;
- transition: all 0.3s;
- }
- #exportBtn:hover, #importBtn:hover, #deleteBtn:hover, #showAllBtn:hover {
- background: #8a613a;
- border: 2px solid #502d1a;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
- }
- /* 勾选框和单选框风格 */
- input[type="checkbox"], input[type="radio"] {
- width: 20px;
- height: 20px;
- cursor: pointer;
- }
- /* 筛选条件样式 */
- fieldset {
- border: 2px solid #6b4e18;
- padding: 10px;
- margin-bottom: 20px;
- }
- legend {
- padding: 0 10px;
- font-weight: bold;
- color: #f3eacb;
- background: #6b4e18;
- }
- /* 提示文本和其他文字 */
- #exportNull, #importSuccess, #importFail, #importError, #deleteSuccess {
- color: #ffdddd;
- font-style: italic;
- background: rgba(100, 20, 20, 0.8);
- padding: 10px;
- border-radius: 5px;
- margin: 10px 0;
- }
- /* 自定义确认弹窗 */
- #customConfirmModal {
- background: rgba(30, 30, 30, 0.9);
- border: 3px solid #6b4e18;
- color: #f3eacb;
- padding: 20px;
- text-align: center;
- position: fixed;
- top: 30%;
- left: 50%;
- transform: translate(-50%, -50%);
- box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
- }
- #confirmYes, #confirmNo {
- margin: 10px;
- padding: 10px 15px;
- background: #6b4e18;
- color: #f3eacb;
- border: 2px solid #3b2d12;
- border-radius: 5px;
- font-weight: bold;
- font-family: '微软雅黑', sans-serif;
- cursor: pointer;
- transition: all 0.3s;
- }
- #confirmYes:hover, #confirmNo:hover {
- background: #8a613a;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
- }
复制代码
|