From 78a4473b4ceaef157c3e232765cc6b05d09c2db4 Mon Sep 17 00:00:00 2001
From: Victor-692 <3612332801@qq.com>
Date: Sun, 6 Sep 2026 21:57:48 +0800
Subject: [PATCH 1/2] hw-HMTL&CSS
---
.gitignore | 2 ++
frontend/public/about-me.html | 61 ++++++++++++++++++++++++++++++++++
frontend/public/index.css | 62 +++++++++++++++++++++++++++++++++++
frontend/public/index.html | 2 ++
4 files changed, 127 insertions(+)
create mode 100644 frontend/public/about-me.html
diff --git a/.gitignore b/.gitignore
index 5d8e194..5fd955a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -7,3 +7,5 @@ build
electron
.local.env
+
+.vs/
diff --git a/frontend/public/about-me.html b/frontend/public/about-me.html
new file mode 100644
index 0000000..81b3fca
--- /dev/null
+++ b/frontend/public/about-me.html
@@ -0,0 +1,61 @@
+
+
+
+
+
+ 关于我
+
+
+
+
+
+
+
+
+
基本信息
+
+
+ | 姓名 |
+ 赵奕然 |
+
+
+ | 班级 |
+ 无56 |
+
+
+
+
+
+
我的爱好
+
+
+
+
+
+
+
+
diff --git a/frontend/public/index.css b/frontend/public/index.css
index b73a3c3..683e77a 100644
--- a/frontend/public/index.css
+++ b/frontend/public/index.css
@@ -62,3 +62,65 @@
.styled-list li {
line-height: 2em;
}
+
+/* ===== 关于我页面 ===== */
+#about-me-frame {
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ gap: 16px;
+ padding: 32px 16px;
+ box-sizing: border-box;
+ background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
+}
+
+.about-me-card {
+ background-color: rgba(255, 255, 255, 0.35);
+}
+
+#about-me-header {
+ width: min(640px, 92vw);
+ text-align: center;
+}
+
+#about-me-avatar {
+ width: 88px;
+ height: 88px;
+ margin: 0 auto;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border-radius: 50%;
+ font-size: 40px;
+ color: #ffffff;
+ background: linear-gradient(135deg, #6a82fb 0%, #fc5c7d 100%);
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
+}
+
+.about-me-subtitle {
+ color: rgba(0, 0, 0, 0.65);
+}
+
+#about-me-grid {
+ width: min(920px, 94vw);
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ gap: 16px;
+}
+
+.about-me-col {
+ flex: 1 1 320px;
+ max-width: 460px;
+}
+
+.about-me-quote {
+ margin: 12px 0;
+ padding: 8px 16px;
+ border-left: 4px solid #6a82fb;
+ border-radius: 4px;
+ background-color: rgba(255, 255, 255, 0.35);
+ color: rgba(0, 0, 0, 0.75);
+}
diff --git a/frontend/public/index.html b/frontend/public/index.html
index 41ea6e5..60805e8 100644
--- a/frontend/public/index.html
+++ b/frontend/public/index.html
@@ -24,6 +24,8 @@ 这是一个趣味会议软件
进入主页
关于这个工程
+
+ 关于我