-
Notifications
You must be signed in to change notification settings - Fork 0
/
forbestwish.css
312 lines (266 loc) · 6.49 KB
/
forbestwish.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
/* 全局樣式 */
body {
font-family: 'Lora', serif;
font-size: 16px;
color: #2C2C2C;
background-color: #F0F8FF;
margin: 0;
padding: 0;
line-height: 1.8;
}
a {
color: #007BFF;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #0056b3;
}
/* 設置最大寬度和中央對齊 */
.container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
padding: 20px 0;
}
.map-container {
width: 100%; /* 使地图容器占据父容器的全部宽度 */
max-width: 400px; /* 设置最大宽度 */
margin: 0 auto; /* 使地图在页面中居中 */
}
.map-container iframe {
width: 100%;
height: 200px; /* 设置地图的高度 */
}
/* 頁眉和頁腳 */
header, footer {
background-color: #FFFFFF;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: center;
}
header {
margin-bottom: 30px;
}
footer {
margin-top: 30px;
}
/* Logo 設計 */
header .logo {
max-width: 40px; /* 縮小 Logo */
margin-bottom: 10px;
}
/* 頁腳中的聯繫圖標 */
footer .contact-icon {
vertical-align: middle;
width: 20px; /* 調整圖標寬度 */
height: 20px; /* 調整圖標高度 */
margin-right: 10px; /* 添加右側邊距(可選) */
}
/* 頁腳中的名片圖像 */
.business-cards {
display: flex;
justify-content: center;
gap: 20px; /* 圖像間的間距 */
margin-top: 20px;
}
.business-card {
width: 170px; /* 調整名片的寬度 */
height: auto;
border-radius: 5px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.business-card:hover {
transform: scale(1.05);
}
/* 主內容區域 */
main {
background-color: #FFF;
padding: 20px;
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
max-width: 800px;
margin: 20px auto;
}
/* 圖片樣式 */
img {
width: 100%;
height: auto;
max-width: 100%;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
transition: transform 0.4s ease;
}
img:hover {
transform: scale(1.05);
}
/* 花籃展示 */
#flower-basket-gallery {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 20px;
margin-top: 20px;
}
#flower-basket-gallery .flower-basket-item {
width: 48%;
text-align: center;
}
#flower-basket-gallery .flower-basket-item img {
width: 100%;
max-width: 160px;
margin: 0 auto;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.4s ease;
}
#flower-basket-gallery .flower-basket-item img:hover {
transform: scale(1.05);
}
/* 留言板 */
#comment-form {
background-color: #f7f3f0; /* 柔和的背景色 */
padding: 20px;
border-radius: 8px; /* 圓角邊框 */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 微陰影效果 */
max-width: 550px; /* 最大寬度控制 */
margin: 0 auto; /* 水平居中 */
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* 字體選擇 */
}
#comment-form label {
display: block;
margin-bottom: 8px;
font-weight: bold;
color: #555; /* 字體顏色 */
}
#comment-form input, #comment-form textarea {
width: 90%;
padding: 10px;
margin-bottom: 16px;
border: 1px solid #ddd; /* 邊框樣式 */
border-radius: 4px;
font-size: 16px;
color: #333;
background-color: #fafafa; /* 輸入框背景色 */
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); /* 內陰影效果 */
}
#comment-form button {
background-color: #3a4f86; /* 基督教主題色系 */
color: white;
border: none;
padding: 12px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
#comment-form button:hover {
background-color: #5b3a60; /* 滑鼠懸停效果 */
}
#comments-container {
margin-top: 40px;
}
.comment {
background-color: #ffffff;
border-radius: 8px;
padding: 15px;
margin-bottom: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 卡片陰影效果 */
font-family: 'Georgia', serif; /* 優雅的字體選擇 */
max-width: 550px; /* 控制最大寬度 */
margin: 0 auto; /* 水平居中 */
color: #333; /* 字體顏色 */
}
.comment-header {
font-weight: bold;
margin-bottom: 8px;
color: #3a4f86; /* 標題顏色 */
}
.comment-body {
line-height: 1.6; /* 行高 */
}
.comment-footer {
margin-top: 12px;
font-size: 14px;
color: #999; /* 顏色較淡的註解 */
text-align: right;
}
#comments-section {
padding: 40px 20px;
background-color: #f9f8f6; /* 柔和的背景色 */
border-top: 1px solid #eee; /* 細邊框 */
border-bottom: 1px solid #eee;
text-align: center;
}
#comments-section h2 {
font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
font-size: 28px;
color: #5b3a60;
margin-bottom: 30px;
}
#comments-section p {
font-size: 18px;
color: #666;
max-width: 800px;
margin: 0 auto;
line-height: 1.8;
}
.comment-icon {
margin-right: 8px;
vertical-align: middle;
color: #7a4f86;
}
.clear-comments-button {
background-color: #e74c3c; /* 紅色背景 */
color: white;
border: none;
padding: 10px 15px;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
.clear-comments-button:hover {
background-color: #c0392b; /* 滑鼠懸停效果 */
}
.comment:hover {
background-color: #fafafa;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 懸停時的卡片效果 */
transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
#comment-form input:focus, #comment-form textarea:focus {
border-color: #7a4f86; /* 聚焦時的邊框顏色 */
outline: none;
box-shadow: 0 0 5px rgba(122, 79, 134, 0.5); /* 聚焦時的外部陰影 */
}
/* 響應式設計 */
@media (max-width: 768px) {
body {
font-size: 14px;
}
header, footer {
padding: 15px;
}
main {
padding: 15px;
margin: 15px auto;
}
#flower-basket-gallery .flower-basket-item {
width: 100%;
}
#flower-basket-gallery .flower-basket-item img {
max-width: 120px;
}
img {
border-radius: 10px;
}
.business-card {
width: 150px; /* 調整響應式的名片寬度 */
}
#comment-form, .comment {
max-width: 100%; /* 讓留言表單與留言卡片響應式自適應 */
margin: 0 10px; /* 增加邊距 */
}
}