-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqr.html
More file actions
114 lines (97 loc) · 2.52 KB
/
Copy pathqr.html
File metadata and controls
114 lines (97 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>QR Code – P21 Capstone</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Segoe UI', Arial, sans-serif;
background: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
gap: 36px;
padding: 60px 40px;
}
img.logo {
height: 110px;
width: auto;
}
.label {
text-align: center;
}
.label .course {
font-size: 1.1rem;
font-weight: 700;
color: #c8102e;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 10px;
}
.label h1 {
font-size: 1.55rem;
font-weight: 700;
color: #1a1a1a;
line-height: 1.35;
max-width: 600px;
margin: 0 auto 12px;
}
.label p {
font-size: 1.05rem;
color: #555;
line-height: 1.5;
}
#qr-img {
border: 2px solid #e4e7ec;
border-radius: 12px;
padding: 20px;
background: #fff;
width: 420px;
height: 420px;
}
.url {
font-size: 0.95rem;
color: #aaa;
word-break: break-all;
text-align: center;
max-width: 480px;
}
.print-btn {
margin-top: 4px;
padding: 14px 40px;
background: #c8102e;
color: #fff;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
letter-spacing: 0.05em;
}
.print-btn:hover { background: #a50d26; }
@media print {
.print-btn { display: none; }
body { justify-content: flex-start; padding-top: 80px; }
}
</style>
</head>
<body>
<object data="media/McGill_University_CoA.svg" type="image/svg+xml" style="height:110px;width:auto;pointer-events:none;"></object>
<div class="label">
<div class="course">MECH 463 — Group I</div>
<h1>P21: Development of a Testing Setup to Assess Coating Adherence of a New Liquid Biopsy Device</h1>
<p>Scan to visit the project page</p>
</div>
<img
id="qr-img"
src="https://api.qrserver.com/v1/create-qr-code/?size=420x420&margin=12&data=https%3A%2F%2Fcapstone-kappa-gules.vercel.app%2F"
alt="QR Code"
/>
<p class="url">https://capstone-kappa-gules.vercel.app/</p>
<button class="print-btn" onclick="window.print()">Print / Save as PDF</button>
</body>
</html>