refactor: 登录页面极简暗色风格 + 登录注册加返回首页
All checks were successful
continuous-integration/drone/push Build is passing

login.css: 完全重写为 AkileCloud 风格
- 无卡片/边缘光晕/无边框深灰输入框
- 纯蓝按钮 #165DFF / 胶囊Tab / 暗色第三方登录
- 二维码区域/安全验证/语言切换暗色适配

login.php + regist.php:
- 左上角新增「← 返回首页」按钮(fixed定位)
- 悬停白色+微透明背景

regist.css: 补上 .back-home-link 样式
This commit is contained in:
yiqiu
2026-03-19 18:52:50 +08:00
parent 3e2939463c
commit a077bbc828
4 changed files with 525 additions and 235 deletions

View File

@@ -401,7 +401,39 @@
right: 16px;
}
.back-home-link {
top: 16px;
left: 16px;
}
.read-text {
font-size: 12px;
}
}
/* ---- 返回首页按钮 ---- */
.back-home-link {
position: fixed;
top: 24px;
left: 24px;
z-index: 20;
display: flex;
align-items: center;
gap: 6px;
color: rgba(139, 148, 158, 0.6);
text-decoration: none;
font-size: 13px;
padding: 6px 12px;
border-radius: 6px;
transition: all 0.2s;
}
.back-home-link:hover {
color: #FFFFFF;
background: rgba(255, 255, 255, 0.05);
}
.back-home-link svg {
width: 16px;
height: 16px;
}