Skip to content

Commit d979f79

Browse files
V3.00 Revisions (#29)
- Added OAE support - Split the three mounts into their own step files - Made the images in steps clickable to select instead of previewing
1 parent 1c22682 commit d979f79

File tree

13 files changed

+14694
-9449
lines changed

13 files changed

+14694
-9449
lines changed

package-lock.json

Lines changed: 13129 additions & 8201 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/images/oae.png

139 KB
Loading

public/images/oaeboard.png

238 KB
Loading

src/index.css

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,12 @@ body {
3737
.image-column {
3838
margin-left: 40pt;
3939
max-width: 180px;
40+
cursor: pointer;
41+
transition: transform 0.2s ease;
42+
}
43+
44+
.image-column:hover {
45+
transform: scale(1.05);
4046
}
4147

4248
.list-container {
@@ -62,9 +68,9 @@ body {
6268
}
6369

6470
.version {
65-
color:gray;
66-
font-size:smaller;
67-
margin-top:3rem;
71+
color:white;
72+
font-size: 1rem;
73+
margin-top:6rem;
6874
}
6975
.bg-dim {
7076
width: 100%;
@@ -85,17 +91,22 @@ body {
8591
padding-top: 10pt;
8692
padding-bottom: 10pt;
8793
border-radius: 50pt;
88-
background: rgba(25, 181, 254, 1);
8994
font-size: 20pt;
95+
background: rgb(19, 141, 197);
9096
color: #ffffff;
9197
border: 2px solid rgb(255, 255, 255);
9298
animation: fadeIn ease 5s;
9399
-webkit-animation: fadeIn ease 5s;
100+
transition: all 0.3s ease;
101+
transform: scale(1);
102+
display: inline-block;
103+
text-decoration: none;
94104
}
95105

96106
.intro-link:hover {
97-
background: rgb(68, 180, 231);
98-
color: #000000;
107+
background: rgba(25, 181, 254, 1);
108+
color: white;
109+
transform: scale(1.05);
99110
}
100111

101112
.intro-link-parent {

src/modules/Home.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ const Home = (props) => {
1111

1212
<div className="intro-horizontal-bar">
1313
<div className="intro-link-child">
14-
<h3 className="intro-header">OAT/OAM FIRMWARE CONFIGURATION</h3>
14+
<h3 className="intro-header">OAT/OAM/OAE Firmware Configuration Generator</h3>
1515
<a className="intro-link" href="steps">START</a>
16-
<p className="version">V2.20</p>
16+
<p className="version">V3.00</p>
1717
</div>
1818
</div>
1919

src/modules/WizardStep.jsx

Lines changed: 161 additions & 1239 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)