-
Notifications
You must be signed in to change notification settings - Fork 0
/
color-oa.html
118 lines (104 loc) · 3.21 KB
/
color-oa.html
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spircape 工作台</title>
<link rel="icon" type="image/png" href="https://qin.zh.yuazhi.cn/66a390533ee9c.png">
<style>
@font-face {
font-family: 'Source Han Sans';
src: url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&display=swap');
}
body, html {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #e0f7fa; /* 更加柔和的背景色 */
font-family: 'Source Han Sans', sans-serif;
}
.container {
width: 100%;
max-width: 600px; /* 限制容器最大宽度 */
padding: 30px;
background-color: #ffffff;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* 增加阴影效果 */
border-radius: 8px; /* 圆角 */
text-align: center; /* 使内容居中 */
}
h1 {
font-size: 2.8em;
color: #00796b; /* 更有活力的颜色 */
margin-bottom: 20px;
}
p {
font-size: 1.3em;
color: #607d8b;
margin-bottom: 40px;
}
.button-container {
display: flex;
flex-direction: column;
gap: 15px; /* 按钮之间的间距 */
}
.button-container a {
padding: 14px;
font-size: 1.1em;
color: #ffffff;
background-color: #00796b;
border: none;
border-radius: 4px;
text-align: center;
text-decoration: none;
transition: background-color 0.3s, transform 0.3s;
}
.button-container a:hover {
background-color: #004d40;
transform: translateY(-2px); /* 悬停时轻微上移效果 */
}
@media (min-width: 768px) {
h1 {
font-size: 3.2em;
}
p {
font-size: 1.5em;
}
.button-container {
flex-direction: row;
flex-wrap: wrap;
gap: 20px;
}
.button-container a {
flex: 1 1 calc(50% - 20px);
font-size: 1.2em;
}
}
@media (min-width: 1024px) {
h1 {
font-size: 3.5em;
}
p {
font-size: 1.6em;
}
.container {
padding: 40px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>创作不断<br>创意无限</h1>
<p>从这里出发,与我们共同创造更美好的明天</p>
<div class="button-container">
<a href="https://myapps.microsoft.com/">Microsoft</a>
<a href="https://outlook.cloud.microsoft">Outlook</a>
<a href="https://kgthe032.feishu.cn/">飞书</a>
<a href="https://www.kdocs.cn/">金山文档</a>
</div>
</div>
</body>
</html>