Skip to content

Commit c85bbfe

Browse files
committed
Implemented grid.
1 parent 897c8ab commit c85bbfe

File tree

3 files changed

+68
-22
lines changed

3 files changed

+68
-22
lines changed

1919main.html

+40-19
Original file line numberDiff line numberDiff line change
@@ -17,32 +17,53 @@ <h3> A project by Manas Paranjape and Bryce Butler. </h3>
1717
</section>
1818
</div>
1919

20-
<div id="remainingInfo">
20+
<!--<div id="headImage">
2121
<section class="titleImage">
2222
<figure>
2323
<img src="./Images/Ford_GT_Nogaro.jpg">
2424
</figure>
2525
</section>
26+
</div> -->
27+
<div id="mainContent">
28+
<section>
29+
<article>
30+
<h3> Beginnings</h3>
31+
<p>Ford GT wasn't really Ford. The first GTs were built by Lola, a company in the 1960s. Ford bought several for the Le Mans. In, 1965, Carroll Shelby began to develop the Lola GT's into a better car. They called GT40, for its 40 inch height. They failed miserably, the gear boxes, suspension, etc. failing under endurance problems. Then Shelby, a retired Le Mans racer came and helped make the GT. In 1965, Ken Miles came into the project. The did major airflow improvements, added fiberglass, and, surprisingly added a larger 7-liter, 427 ci engine. They still failed, however. Next year, they made more improvements and finally won the Le Mans. They are the only American company to have ever won Le Mans.
32+
</p>
33+
</article>
34+
</section>
35+
<section>
36+
<figure>
37+
<img src="./Images/Temp.jpg">
38+
</figure>
39+
</section>
40+
<section>
41+
<article>
42+
<h3>
43+
Brakes
44+
</h3>
45+
<p>
46+
The Ford GT uses carbon-ceramic disk brakes. This high performance material, made from a special mixture of powders, resins and fibers in a complex manufacturing process, has been used since the 1970s in braking systems for aerospace applications and since the 1980s in motorsports.
47+
</p>
48+
</article>
49+
</section>
50+
<section>
51+
<iframe width="560" height="315" src="https://www.youtube.com/embed/lrCwmpjR77U" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
52+
</iframe>
53+
</section>
54+
<section>
55+
<article>
56+
<h3>
57+
Engine
58+
</h3>
59+
<p>
60+
The Ford GT (current) uses a twin turbocharged V6 3.5 liter intercooled engine. The 3.5L EcoBoost is direct-injected and turbocharged engine first introduced in 2007 under the name TwinForce. The main idea behind this power unit was the creation of a solid alternative to a large-displacement V8 engine such as the V8 coyote sourced engine. This was used in cars like the Ford Mustang GT. The new turbocharged 3.5L V6 engine provides equivalent power and torque to a naturally aspirated 6.0L V8 with less fuel consumption and emissions of harmful substances.
61+
</p>
62+
</article>
63+
</section>
2664
</div>
27-
<article>
28-
<h3> Beginnings</h3>
29-
<p>Ford GT wasn't really Ford. The first GTs were built by Lola, a company in the 1960s. Ford bought several for the Le Mans. In, 1965, Carroll Shelby began to develop the Lola GT's into a better car. They called GT40, for its 40 inch height. They failed miserably, the gear boxes, suspension, etc. failing under endurance problems. Then Shelby, a retired Le Mans racer came and helped make the GT. In 1965, Ken Miles came into the project. The did major airflow improvements, added fiberglass, and, surprisingly added a larger 7-liter, 427 ci engine. They still failed, however. Next year, they made more improvements and finally won the Le Mans. They are the only American company to have ever won Le Mans.
30-
</p>
31-
</article>
32-
<figure>
33-
<img src="./Images/Temp.jpg">
34-
</figure>
35-
<article>
36-
<h3>
37-
Brakes
38-
</h3>
39-
<p>
40-
The Ford GT uses carbon-ceramic disk brakes. This high performance material, made from a special mixture of powders, resins and fibers in a complex manufacturing process, has been used since the 1970s in braking systems for aerospace applications and since the 1980s in motorsports.
41-
</p>
42-
</article>
4365
<footer>
44-
<p> Copyright 2020 Manas Paranjape and Bryce Butler </p>
66+
<p>©Copyright 2020 Manas Paranjape and Bryce Butler </p>
4567
</footer>
46-
4768
</div>
4869
</html>

1919style.css

+28-3
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,27 @@ html {
1212

1313

1414
#headInfo {
15+
background: url('./Images/Ford_GT_Nogaro.jpg') center;
16+
background-size:cover;
1517
display: grid;
1618
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
17-
justify-items: center;
19+
padding: 20px;
20+
color:whitesmoke;
1821
}
1922

20-
#remainingInfo {
23+
.topsplashText {
24+
padding-top: 70px;
25+
color: whitesmoke;
26+
}
27+
28+
img {
29+
max-width: 100%;
30+
height: auto;
31+
}
32+
33+
#headImage {
2134
display: grid;
2235
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
23-
justify-items: center;
2436
}
2537

2638
article > h3 {
@@ -33,4 +45,17 @@ footer {
3345
text-align: center;
3446
}
3547

48+
#mainContent {
49+
display: grid;
50+
grid-template-columns: repeat(auto-fit, minmax(240 px, 1fr));
51+
}
52+
53+
p {
54+
color: #333333;
55+
font-size: 1.2em;
56+
line-height: 1.4;
57+
}
3658

59+
footer > p {
60+
color: whitesmoke;
61+
}

Images/Ford_GT_Nogaro.jpg

3.08 MB
Loading

0 commit comments

Comments
 (0)