- 新增「简记memo」一体化小程序产品原型设计文档 - 新增简记memo完整版UI视觉设计规范和界面细节 - 添加IDEA项目配置文件.gitignore - 创建404页面HTML文件,包含响应式布局和错误提示 - 添加关于页面HTML文件,展示品牌介绍和团队信息 - 实现AES加解密工具函数,支持请求体加密 - 添加用户协议页面基础框架
154 lines
2.6 KiB
CSS
154 lines
2.6 KiB
CSS
/* FullCalendar Base Styles */
|
|
.fc {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
}
|
|
|
|
.fc-direction-ltr .fc-daygrid-event.fc-event-start {
|
|
margin-left: 2px;
|
|
}
|
|
|
|
.fc-direction-ltr .fc-daygrid-event.fc-event-end {
|
|
margin-right: 2px;
|
|
}
|
|
|
|
.fc-daygrid-day-top {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.fc-daygrid-day-number {
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.fc-theme-standard td,
|
|
.fc-theme-standard th {
|
|
border: 1px solid #e5e7eb;
|
|
}
|
|
|
|
.fc-theme-standard thead {
|
|
background: #f9fafb;
|
|
}
|
|
|
|
.fc-col-header-cell-cushion {
|
|
padding: 8px 4px;
|
|
font-weight: 600;
|
|
color: #666;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.fc-daygrid-day {
|
|
background: #fff;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.fc-daygrid-day:hover {
|
|
background: #f3f4f6;
|
|
}
|
|
|
|
.fc-daygrid-day-frame {
|
|
min-height: 100px;
|
|
}
|
|
|
|
.fc-toolbar-title {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #1a1a1a;
|
|
}
|
|
|
|
.fc-button {
|
|
background: transparent !important;
|
|
border: 1px solid #e5e7eb !important;
|
|
color: #666 !important;
|
|
border-radius: 8px !important;
|
|
padding: 8px 16px !important;
|
|
margin: 0 4px !important;
|
|
font-weight: 500 !important;
|
|
transition: all 0.2s !important;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.fc-button:hover {
|
|
background: #667eea !important;
|
|
border-color: #667eea !important;
|
|
color: #fff !important;
|
|
}
|
|
|
|
.fc-button-active {
|
|
background: #667eea !important;
|
|
border-color: #667eea !important;
|
|
color: #fff !important;
|
|
}
|
|
|
|
.fc-button-primary:not(:disabled).fc-button-active,
|
|
.fc-button-primary:not(:disabled):active {
|
|
background: #667eea !important;
|
|
border-color: #667eea !important;
|
|
}
|
|
|
|
.fc-today-button {
|
|
background: #667eea !important;
|
|
border-color: #667eea !important;
|
|
color: #fff !important;
|
|
}
|
|
|
|
.fc-day-today {
|
|
background: rgba(102, 126, 234, 0.1) !important;
|
|
}
|
|
|
|
.fc-day-today .fc-daygrid-day-frame {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: #fff;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.fc-day-today .fc-daygrid-day-number {
|
|
color: #fff;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.fc-event {
|
|
border-radius: 4px;
|
|
padding: 2px 6px;
|
|
font-size: 12px;
|
|
margin: 2px;
|
|
}
|
|
|
|
.fc-event-title {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.fc-more-link {
|
|
font-size: 12px;
|
|
color: #667eea;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.fc-more-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.fc-highlight {
|
|
background: rgba(102, 126, 234, 0.2);
|
|
}
|
|
|
|
.fc-popover {
|
|
background: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
|
border: 1px solid #e5e7eb;
|
|
}
|
|
|
|
.fc-popover-header {
|
|
padding: 8px 12px;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.fc-popover-body {
|
|
padding: 8px;
|
|
}
|