Skip to content

Commit 82d3fb6

Browse files
committed
Seahawk rov feature section
1 parent 8652cc9 commit 82d3fb6

File tree

7 files changed

+64
-4
lines changed

7 files changed

+64
-4
lines changed

_data/seahawk-rov-features.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
- title: "Primary Manipulator"
2+
description: "The primary manipulator is engineered for dynamic and reliable usage. It is mounted on the front of ROV SeaHawk within view of the multiple cameras. The custom-printed three-pronged jaws, and a flexible rubber interior, allow the operator to grasp irregularly shaped objects with ease. Once the object is secured, the piston may apply up to 70N of force to ensure the object of importance remains securely captured in the jaws. "
3+
image: "https://cdn.pixabay.com/photo/2015/01/08/18/27/startup-593341_960_720.jpg"
4+
5+
- title: "T200 Thrusters"
6+
description: "ROV SeaHawk uses eight Blue Robotics thrusters mounted with custom 3D-printed brackets in a configuration that enables all degrees of motion. The motors are shrouded with 3D-printed guards for increased safety. Using flow simulations, the Cabrillo Robotics Club minimized shroud impact on thrusters from a 23% to 15% reduction in efficiency compared to the initial prototype. The thrusters also use a lower voltage than their technical maximum. "
7+
image: "https://cdn.pixabay.com/photo/2015/01/08/18/27/startup-593341_960_720.jpg"
8+
- title: "Logic Tube"
9+
description: "ROV SeaHawk is designed around a centralized 'logic tube.' The logic tube contains temperature and humidity sensors that are monitored by the software which alerts the pilot of any abnormalities for increased safety. It also encloses logic components and an auxiliary pivoting camera on a custom servo mount. The logic tube is completely waterproofed with specialized connectors and is vacuum sealed before every mission to ensure no leakage."
10+
image: "https://cdn.pixabay.com/photo/2015/01/08/18/27/startup-593341_960_720.jpg"
11+
12+
- title: "Fish Release"
13+
description: "To aid in environmental restoration efforts and species conservation, ROV SeaHawk includes a fish release. The specialized release system was carefully designed for the safe, secure transport, and gentle release of species. Fish may be placed in the containment area, then driven to the site where they may be released through a sliding gate on the bottom. The fish release may be used to assist in conservation projects such as repopulating the Northern Redbelly Dace."
14+
image: "https://cdn.pixabay.com/photo/2015/01/08/18/27/startup-593341_960_720.jpg"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
<div class="grid" id="feature-grid">
3+
{% for feature in site.data.seahawk-rov-features %}
4+
<div class="column" id="feature-card">
5+
<img src="{{ feature.image }}" alt="{{ feature.title }}" class="image"/>
6+
<div class="feature-content">
7+
<h3 class="feature-title">{{ feature.title }}</h3>
8+
<p class="feature-description">{{ feature.description }}</p>
9+
</div>
10+
</div>
11+
{% endfor %}
12+
</div>

_includes/seahawk-rov-features.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
<h2 class="title has-text-left has-text-white-ter is-size-2 has-text-weight-bold mgb-medium">
44
ROV Features
55
</h2>
6+
{% include seahawk-rov-feature-card.html%}
67
</div>
78
</section>

_includes/seahawk.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="container">
22
<section class="hero" id="seahawk-info-graphic">
3-
<figure class="hero-background" style="background-image: url('https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/14d24d1b212df580f18441c23426d07a719ebab4/assets/images/seahawk-II/seahawk-II-info-graphic.webp');">
3+
<figure class="hero-background" style="background-image: url('https://raw.githubusercontent.com/CabrilloRoboticsClub/cabrillorobotics.github.io/what-a-theme-test/assets/images/seahawk/seahawk-info-graphic.webp');">
44
</figure>
55
</section>
66
</div>

_site/assets/css/style.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_site/assets/css/style.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/style.scss

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
--text: #a2a2a2;
1212
--seahawk-II: #fe5e20;
1313
--seahawk: #79bde8;
14-
--hydrozoa: #3961e2;
14+
--hydrozoa: #1a5ea5;
1515
}
1616

1717
// Global settings
@@ -418,6 +418,39 @@ body { background-color: var(--background); }
418418
}
419419
}
420420

421+
#feature-grid {
422+
display: grid;
423+
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
424+
#feature-card {
425+
display: flex;
426+
flex-direction: column;
427+
.image {
428+
border-radius: 10px 10px 0px 0px;
429+
overflow: hidden;
430+
flex-shrink: 0;
431+
}
432+
.feature-content {
433+
flex-grow: 1;
434+
display: flex;
435+
flex-direction: column;
436+
justify-content: flex-start;
437+
}
438+
.feature-title {
439+
font-size: 1.2rem;
440+
text-align: center;
441+
color: var(--header);
442+
background-color: var(--seahawk);
443+
padding: 10px;
444+
margin: 0;
445+
border-radius: 0px 0px 10px 10px;
446+
}
447+
.feature-description {
448+
text-align: justify;
449+
margin-top: 10px;
450+
}
451+
}
452+
}
453+
421454
#robots {
422455
#robot-card {
423456
position: relative;

0 commit comments

Comments
 (0)