From d3122a47ffefea184a2b208aa5bf86b38eb5cd35 Mon Sep 17 00:00:00 2001
From: MKStoler1024 <158786854+MKStoler1024@users.noreply.github.com>
Date: Mon, 24 Feb 2025 05:55:14 +0000
Subject: [PATCH] =?UTF-8?q?style:=20=E4=BC=98=E5=8C=96=E8=AE=BE=E7=BD=AE?=
=?UTF-8?q?=E6=A8=A1=E6=80=81=E6=A1=86=E6=A0=B7=E5=BC=8F=EF=BC=8C=E8=B0=83?=
=?UTF-8?q?=E6=95=B4=E6=8C=89=E9=92=AE=E5=B8=83=E5=B1=80=E5=92=8C=E8=83=8C?=
=?UTF-8?q?=E6=99=AF=E6=95=88=E6=9E=9C=EF=BC=8C=E6=9B=B4=E6=96=B0=E5=AD=97?=
=?UTF-8?q?=E4=BD=93=E5=92=8C=E9=A2=9C=E8=89=B2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
exam/index.html | 9 +-
exam/styles.css | 62 +++--
exam/x.html | 596 ++++++++++++++++++++++++++++++++++++++++++++++++
time/index.html | 27 ++-
4 files changed, 665 insertions(+), 29 deletions(-)
create mode 100644 exam/x.html
diff --git a/exam/index.html b/exam/index.html
index ff3620f..9b5e941 100644
--- a/exam/index.html
+++ b/exam/index.html
@@ -46,15 +46,18 @@
-
diff --git a/exam/styles.css b/exam/styles.css
index 08d88ff..d235218 100644
--- a/exam/styles.css
+++ b/exam/styles.css
@@ -192,31 +192,47 @@ td:last-child {
}
#settings-modal-content {
- background-color: #1f1f1f;
- margin: 5% auto;
- padding: 20px;
- border: 1px solid #888;
- width: 80%;
+ background: rgba(31, 31, 31, 0.95);
+ padding: 25px;
+ margin: 25px auto;
+ border-radius: 12px;
+ border: 1px solid #444;
+ backdrop-filter: blur(8px);
max-width: 600px;
- border-radius: 10px;
- backdrop-filter: blur(10px);
+ animation: fadeIn 0.5s ease;
+}
+
+@keyframes fadeIn {
+ from { opacity: 0; transform: translateY(-20px); }
+ to { opacity: 1; transform: translateY(0); }
+}
+
+#settings-modal-content h3 {
+ margin: 0 0 20px;
+ color: #e0e0e0;
+ font-size: 20px;
}
#settings-modal-content label {
- font-size: 2rem;
+ display: flex;
+ align-items: center;
+ gap: 10px;
+ margin: 12px 0;
+ font-size: 16px;
+ color: #b0b0b0;
}
#settings-modal-content input[type="number"],
#settings-modal-content input[type="text"] {
- font-size: 2rem;
+ font-size: 1.5rem;
padding: 10px;
margin-top: 10px;
margin-bottom: 20px;
width: 100%;
box-sizing: border-box;
- border: 1px solid #ccc;
+ border: 1px solid #555;
border-radius: 5px;
- background-color: #121212;
+ background-color: #222;
color: #e0e0e0;
}
@@ -226,20 +242,28 @@ td:last-child {
box-shadow: 0 0 0 1px #007acc;
}
+.button-group {
+ display: flex;
+ justify-content: flex-end;
+ gap: 10px;
+}
+
#settings-modal-content button {
- padding: 10px 20px;
- font-size: 2rem;
- cursor: pointer;
- background-color: #93b4f7;
+ background: linear-gradient(135deg, #3498db, #2980b9);
color: white;
border: none;
- border-radius: 5px;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
- transition: background-color 0.3s ease;
+ padding: 12px 24px;
+ border-radius: 8px;
+ cursor: pointer;
+ font-size: 15px;
+ font-weight: 500;
+ transition: all 0.2s ease;
+ box-shadow: 0 4px 12px rgba(52,152,219,0.25);
}
#settings-modal-content button:hover {
- background-color: #45a049;
+ transform: translateY(-1px);
+ box-shadow: 0 6px 16px rgba(52,152,219,0.35);
}
#close-settings-btn {
diff --git a/exam/x.html b/exam/x.html
new file mode 100644
index 0000000..1d0d161
--- /dev/null
+++ b/exam/x.html
@@ -0,0 +1,596 @@
+
+
+
+
+
课程状态系统完整版
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
系统设置
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/time/index.html b/time/index.html
index c7046f9..8249b26 100644
--- a/time/index.html
+++ b/time/index.html
@@ -31,48 +31,61 @@