-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathfacilities.html
More file actions
111 lines (108 loc) · 3.15 KB
/
Copy pathfacilities.html
File metadata and controls
111 lines (108 loc) · 3.15 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
---
layout: null
toc: false
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Facilities - Engineering 100-980</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
padding-top: 0;
background-color: #f8f8f8;
color: #00274C;
}
.hero {
position: relative;
text-align: center;
color: #fff;
height: 40vh;
overflow: hidden;
}
.hero > img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
filter: brightness(60%);
}
.hero-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
}
.hero-text h1 { margin: 0.2em 0; font-size: clamp(2rem, 4vw, 3rem); }
.facilities {
max-width: 1000px;
margin: 40px auto;
padding: 0 20px;
}
.facility-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 20px;
}
.facility-card {
border: 1px solid #ddd;
border-radius: 4px;
overflow: hidden;
background: #fff;
}
.facility-card img {
width: 100%;
height: 180px;
object-fit: cover;
}
.facility-card h3 { margin: 0.5em; }
.facility-card p { padding: 0 0.5em 1em; }
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SX2JP3SZ98"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SX2JP3SZ98');
</script>
</head>
<body>
{% include navbar.html %}
<div class="hero">
<img src="{{ '/media/north-campus.png' | relative_url }}" alt="North Campus">
<div class="hero-text">
<h1>Facilities</h1>
</div>
</div>
<section class="facilities">
<p>Below is a brief overview of the laboratory spaces used by ENGR100-980.</p>
<div class="facility-grid">
<div class="facility-card">
<img src="{{ '/media/soldering-lab1.png' | relative_url }}" alt="Soldering Lab">
<h3>Soldering Lab</h3>
<p>Workstations equipped with soldering irons and fume extractors for circuit board fabrication.</p>
</div>
<div class="facility-card">
<img src="{{ '/media/computer-lab.png' | relative_url }}" alt="Computer Lab">
<h3>Computer Lab</h3>
<p>CAEN computing stations for CAD design and PCB production, utilizing industry-standard software packages.</p>
</div>
<div class="facility-card">
<img src="{{ '/media/design-lab.png' | relative_url }}" alt="Research and Design Lab">
<h3>Research/Design Lab</h3>
<p>Collaborative team workspaces for research and design.</p>
</div>
<div class="facility-card">
<img src="{{ '/media/construction-lab.png' | relative_url }}" alt="Construction Lab">
<h3>Construction Lab</h3>
<p>Tools and materials for building and assembling the final flight hardware.</p>
</div>
</div>
</section>
</body>
</html>