-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
135 lines (119 loc) · 2.54 KB
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* 重置所有元素的默认边距、内边距和box-sizing属性 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
text-decoration: none;
}
/* 设置页面的背景颜色 */
body {
background: #ffffff;
}
.current-time {
position: absolute;
top: 0.01rem;
/* 距离顶部20像素 */
text-align: right;
width: 100%;
font-size: 0.3rem;
/* 时间文字大小 */
color: #fff;
/* 时间文字颜色 */
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
/* 添加阴影效果 */
}
/* 设置内容区为绝对定位,不挤占已有界面 */
.content {
display: none;
/* 默认隐藏内容 */
position: absolute;
/* 使用绝对定位 */
text-align: center;
margin-top: 20px;
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
background-color: white;
/* 设置背景颜色 */
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
/* 添加阴影效果 */
z-index: 1;
/* 默认显示在上层 */
}
section {
border-style: solid;
text-align: center;
width: 80vw;
height: 100vh;
margin-top: 0;
margin-left: 10vw;
border-radius: 1vh;
background-color: #d6eef0;
transition: box-shadow 0.3s;
/* 添加过渡效果 */
}
/* 鼠标进入,增加阴影 */
section:hover {
box-shadow: 0vh 0vh 4vw #333;
}
/* 为内容区域添加位置,可以根据需要调整 */
#homepage {
top: 0.2rem;
left: 1.5rem;
right: 0.5rem;
border-style: solid;
text-align: center;
height: auto;
border-radius: 0.2rem;
background-color: #d6eef0;
transition: box-shadow 0.6s;
/* 添加过渡效果 */
}
#homepage:hover {
box-shadow: 0vh 0vh 0.08rem #333;
}
#linkspage {
top: 150px;
/* 调整 Y 轴位置 */
left: 50%;
/* 居中显示 */
transform: translateX(-50%);
/* 水平居中 */
}
#warningpage {
top: 150px;
/* 调整 Y 轴位置 */
left: 50%;
/* 居中显示 */
transform: translateX(-50%);
/* 水平居中 */
}
#morepage {
top: 150px;
/* 调整 Y 轴位置 */
left: 50%;
/* 居中显示 */
transform: translateX(-50%);
/* 水平居中 */
}
#scrollToTopBtn {
position: fixed;
bottom: 0.8rem;
right: 0.3rem;
padding: 0.1rem;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
display: none;
/* 默认隐藏按钮 */
z-index: 999;
border-radius: 50%;
}
.top-hidden {
display: none;
}
#scrollToTopBtn:hover {
background-color: #0056b3;
}