-
Notifications
You must be signed in to change notification settings - Fork 0
/
thank_you.css
55 lines (49 loc) · 1.04 KB
/
thank_you.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
body {
font-family: 'Arial', sans-serif;
background-image: url('images/bg.jpg');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
color: #000;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.thank-you-image img {
max-width: 100%;
height: auto;
border-radius: 10px;
margin-bottom: 20px; /* 在图片与文字之间添加一些间距 */
}
.container {
text-align: center;
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: rgba(255, 255, 255, 0);
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}
.container h1 {
margin-top: 20px;
font-size: 2em;
color: #333;
}
.container p {
font-size: 1.2em;
margin-bottom: 20px;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #1e90ff;
color: white;
border-radius: 5px;
text-decoration: none;
}
.button:hover {
background-color: #4682b4;
}