Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FEATURE: DONE REQUIREMENTS ABOUT CSS - ARIAN #43

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
145 changes: 145 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:100,300,700');

/* Custom variables */

:root {
--color-dark-blue: rgb(25, 33, 41);
--color-blue: rgb(67, 163, 230);
--color-white-text: rgb(255, 255, 255);
--color-black-text: rgb(0, 0, 0);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
size: 10px;
line-height: 3.5em;
font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Roboto Condensed', sans-serif;
}

h1 {
font-size: 9em;
text-align: center;
text-transform: uppercase;
}

h2 {
font-size: 5em;
text-align: center;
text-transform: uppercase;
}
h3 {
font-size: 4.2em;
text-align: center;
line-height: 1em;
}
h4 {
font-size: 1.5em;
letter-spacing: 0, 4px;
line-height: 1em;
}

h5 {
font-size: 1.2em;
line-height: 1em;
}

.nav-bar {
background-color: var(--color-dark-blue);
}

.nav-bar a {
color: var(--color-white-text);
text-decoration: none;
font-size: 2em;
}

.header {
min-height: 650px;
background-image: url('https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironhack-skydive-background.jpg');
background-position: 0 0;
background-repeat: none;
background-size: cover;

& h2 {
color: var(--color-white-text);
text-shadow: #020819 8px -20px 9px;
}

& .quote {
font-size: 2.5em;
}
}

.dark-background {
background-color: var(--color-dark-blue);
color: var(--color-white-text);
}

.text p {
font-size: 2em;
font-weight: 100;
text-align: center;
}

.link-btn a {
background-color: var(--color-blue);
color: var(--color-white-text);
font-family: 'Roboto Condensed', sans-serif;
font-size: 2em;
letter-spacing: 0.5px;
text-align: center;
text-decoration: none;
}

.service-box {
font-size: 1.7em;
text-align: center;
}

.service-box img {
width: 125px;
}

#team .section-text {
font-size: 1.9em;
text-align: center;
}
#team .section-name {
font-size: 1.5em;
font-weight: 700;
}

#team img {
max-width: 250px;
height: 180px;
}

.footer {
font-size: 1.9em;
text-align: center;
& a {
color: var(--color-blue);
text-decoration: none;
}
& ul {
list-style-type: none;
padding: 0;
}
}

.address {
font-size: 0.8em;
font-style: normal;
}
213 changes: 210 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,221 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css" type="text/css">
<title>Ironskydive</title>
</head>

<body>

<!-- PASTE HERE HTML YOU CREATED IN THE FIRST LAB -->


<!-- NavBar -->
<nav class="nav-bar">
<ul>
<li><a href="#structure">Day Structure</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#schedule">Schedule</a></li>
</ul>
</nav>
<!-- Header -->
<header class="header">
<h1>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironhack-skydive-logo.png"
alt="ironhack-skydive-logo" />
IronSkydive
</h1>
<h2>
Let the trip begin
</h2>
<aside class="quote">
<p>
<q><cite>The best experience of our lives</cite></q></br>
Ariel Quiñones & Gonzalo Manrique, Ironhack Founders
</p>
</aside>
</header>

<!-- Section1 -->
<section id="general-information" class="dark-background text link-btn">
<article>
<h3>
Hello !
</h3>
<a href="#">Learn More</a>
<p>
Welcome to IronSkydive, the best adventure you will ever have.
</p>
</article>
<article>
<h3>
About us
</h3>
<a href="#">Watch Video</a>
<p>
We like a lot programmiing websites, but we also love to practice sport
</p>
</article>
<article>
<h3>
Wanna join?
</h3>
<a href="#">Register</a>
<p>
Join our fitness program to be in good shape while learning.
</p>
</article>
</section>
<!-- Section2 -->
<section id="structure">
<h3>
How do we structure the day?
</h3>
<article class="service-box">
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-training.png"
alt="training-logo" />
<h4>
1. Training
</h4>
<p>
We teach all the necessary things to jump from the plane without any king of problem
</p>
</article>
<article class="service-box">
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-get-ready.png"
alt="get-ready-logo" />
<h4>
2. Get ready
</h4>
<p>
You are already prepared, you just need the suit and a parachute. All sizes available
</p>
</article>
<article class="service-box">
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-fly.png" alt="fly-logo" />
<h4>
3. Fly
</h4>
<p>
You are ready, and the plane is waitiing for us in the hangar. Let's fly!
</p>
</article>
<article class="service-box">
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/ironskydive-jump.png" alt="jump-logo" />
<h4>
4. Jump!
</h4>
<p>
You have done the most complicated. Just one step left...jump!
</p>
</article>
</section>
<!-- Section 3 -->
<section id="team" class="dark-background">
<h3>Team</h3>
<p class="section-text">Our team collectively has 75 years of experience. Odds are, when you jump out of the
plane with these
professionals, you won't go splat.</p>
<hr />
<div>
<article>
<h4 class="member-name">
Harold Rothstein
</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_c18b1c463b80090894237a262dfdfbad.jpg"
alt="photo-about-Harold-Rothstein" />
</article>
<article>
<h4 class="member-name">
Susan Phillips
</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_a18d6123a7c8e75f7e70a4e59b941093.jpg"
alt="photo-about-Susan-Phillips" />
</article>
<article>
<h4 class="member-name">
Taylor Roberts
</h4>
<img src="https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_7104a331530d1b0611da55093b7dc421.jpg"
alt="photo-about-Taylor-Roberts" />
</article>
</div>
</section>
<!-- Section 4 -->
<section id="schedule">
<h3>
Schedule
</h3>
<table aria-describedby="Schedule">
<thead>
<th>Time</th>
<th>Monday</th>
<th>Tuesday</th>
<th>Wednesday</th>
<th>Thursday</th>
<th>Friday</th>
<th>Saturday</th>
</tr>
</thead>
<tbody>
<tr>
<td>
9:00 - 11:00
</td>
<td></td>
<td></td>
<td>X</td>
<td></td>
<td>X</td>
<td>X</td>
</tr>
<tr>
<td>12:00 - 14:00</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td>X</td>
<td>X</td>
</tr>
<tr>
<td>15:00 - 17:00</td>
<td></td>
<td></td>
<td>X</td>
<td>X</td>
<td>X</td>
<td>X</td>
</tr>
</tbody>
</table>
<h3>
Schedule a Time Slot
</h3>
</section>
<!-- Footer -->
<footer class="dark-background footer">
<h5>
Contact Information
</h5>
<address class="address">
IronSkydive <br />
33 Rue la Fayette,<br />
75009 Paris,<br />
France <br />
+33 (0) 619 193 088
</address>
<h5>
Follow Us
</h5>
<ul>
<li><a href="#" target="_blank">Twitter</a></li>
<li><a href="#" target="_blank">Facebook</a></li>
<li><a href="#" target="_blank">Twitter</a></li>
</ul>
</footer>

</body>

</html>