-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.html
More file actions
141 lines (128 loc) · 3.27 KB
/
feedback.html
File metadata and controls
141 lines (128 loc) · 3.27 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
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-92RPHGQKXC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-92RPHGQKXC');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
<style>
*, *::before, *::after {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: url('mountain.jpg') no-repeat center center fixed;
background-size: cover;
min-height: 100vh;
}
body::before {
content: '';
position: fixed;
inset: 0;
background: linear-gradient(135deg, rgba(15, 23, 42, 0.65), rgba(30, 58, 95, 0.55));
z-index: 0;
}
.container {
position: relative;
z-index: 1;
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
padding: 40px 20px;
}
.card {
background: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 20px;
box-shadow:
0 4px 6px rgba(0, 0, 0, 0.07),
0 20px 60px rgba(0, 0, 0, 0.15);
padding: 40px 36px;
max-width: 700px;
width: 100%;
text-align: center;
animation: slideUp 0.5s ease-out;
}
@keyframes slideUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.card h2 {
font-family: 'Playfair Display', Georgia, serif;
font-size: 26px;
font-weight: 700;
color: #1e293b;
margin: 0 0 6px 0;
letter-spacing: -0.5px;
}
.card .subtitle {
color: #64748b;
font-size: 14px;
margin: 0 0 24px 0;
}
.card iframe {
width: 100%;
height: 600px;
border: none;
border-radius: 12px;
}
.back-link {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: 20px;
padding: 10px 20px;
background: #f8fafc;
color: #64748b;
text-decoration: none;
border-radius: 10px;
font-size: 13.5px;
font-weight: 500;
border: 1.5px solid #e2e8f0;
transition: all 0.2s ease;
}
.back-link:hover {
background: #f1f5f9;
color: #475569;
border-color: #cbd5e1;
}
@media (max-width: 540px) {
.card {
padding: 28px 20px;
border-radius: 16px;
}
.card h2 {
font-size: 22px;
}
.card iframe {
height: 500px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="card">
<h2>We'd Love Your Feedback</h2>
<p class="subtitle">Help us improve the pack list generator</p>
<iframe src="https://forms.gle/L3cYMEGGQgyBATEC9" width="100%" height="800px" frameborder="0">Loading...</iframe>
<a href="index.html" class="back-link">← Back to Pack List</a>
</div>
</div>
</body>
</html>