-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
132 lines (114 loc) · 2.81 KB
/
Copy path404.html
File metadata and controls
132 lines (114 loc) · 2.81 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Study Completed | Visualization of Automated Vehicle Functionalities</title>
<style>
:root {
--bg-top: #08111f;
--bg-bottom: #000000;
--card-bg: rgba(0, 0, 0, 0.96);
--box-bg: rgba(255, 255, 255, 0.02);
--border: rgba(255, 255, 255, 0.12);
--text: #f5f5f5;
--muted: #cfcfcf;
}
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
min-height: 100%;
}
body {
font-family: Arial, Helvetica, sans-serif;
color: var(--text);
background: linear-gradient(to bottom, var(--bg-top) 0%, #030814 18%, var(--bg-bottom) 100%);
padding: 20px;
}
.page {
max-width: 1400px;
margin: 0 auto;
}
.main-card {
background: var(--card-bg);
border-radius: 28px;
padding: clamp(28px, 5vw, 56px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
margin-top: 120px;
}
.intro {
max-width: 1100px;
margin: 0 auto;
text-align: center;
font-size: clamp(1rem, 2vw, 1.35rem);
line-height: 1.7;
}
.intro h1 {
margin: 0 0 24px;
font-weight: 600;
font-size: clamp(2rem, 5vw, 2.6rem);
line-height: 1.15;
letter-spacing: 0.2px;
}
.intro p {
margin: 0 0 16px;
color: var(--text);
}
.notice-box {
max-width: 1100px;
margin: 34px auto 0;
padding: clamp(20px, 3vw, 34px);
border: 1px solid var(--border);
border-radius: 20px;
background: var(--box-bg);
}
.notice-box p {
margin: 0;
color: var(--muted);
font-size: clamp(1rem, 1.7vw, 1.2rem);
line-height: 1.75;
}
@media (max-width: 768px) {
body {
padding: 14px;
}
.main-card {
border-radius: 22px;
margin-top: 70px;
}
}
@media (max-width: 480px) {
.notice-box {
border-radius: 16px;
}
}
</style>
</head>
<body>
<div class="page">
<main class="main-card">
<section class="intro">
<h1>Study Completed</h1>
<p>
The experimental study
“Visualization of Automated Vehicle Functionalities”
has now been completed.
</p>
<p>
Thank you very much for your interest and participation.
We sincerely appreciate the time and effort of everyone who took part in the study.
</p>
<div class="notice-box">
<p>
The study website is no longer available for new participation.
If you have already completed the study, no further action is required.
</p>
</div>
</section>
</main>
</div>
</body>
</html>