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

added video to landing page #31

Merged
merged 1 commit into from
Dec 7, 2023
Merged
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
22 changes: 20 additions & 2 deletions index.css
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,13 @@ nav a {
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: all 0.8s ease-in-out;
}

.btn:hover {
background-color: var(--white);
border: none;
color: var(--black);
}

/* end of hero */
Expand Down Expand Up @@ -185,8 +192,8 @@ nav a {
}

.team-member .team-img img {
width: 300px;
height: 300px;
width: 250px;
height: 250px;
object-fit: cover;
border-radius: 50%;
}
Expand Down Expand Up @@ -248,4 +255,15 @@ nav a {
flex-direction: column;
}

}

@media screen and (max-width: 700px) {
.team-member .team-img img {
width: 200px;
height: 200px;
}

video {
width: 80%;
}
}
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,12 @@ <h3>Team JobCircus</h3>
</div>
<div class="team-member">
<div class="team-img">
<img src="./web_flask/static/image/aneke.jpg" alt="Team Member 1">
<img src="./web_flask/static/image/thorbie.jpeg" alt="Emmanuel">
</div>
<p>Emmanuel Jonah</p>
<ul>
<li><a href="[LinkedIn Link]" target="_blank"><i class="fa fa-linkedin fa-lg"></i></a></li>
<li><a href="[GitHub Link]" target="_blank"><i class="fa fa-github fa-lg"></i></a></li>
<li><a href="https://github.com/Thorbie010" target="_blank"><i class="fa fa-github fa-lg"></i></a></li>
<li><a href="[Twitter Link]" target="_blank"><i class="fa fa-twitter fa-lg"></i></a></li>
</ul>
</div>
Expand All @@ -127,7 +127,7 @@ <h3>Team JobCircus</h3>
</div>
</div>
<video controls>
<source src="your-video.mp4" type="video/mp4">
<source src="./web_flask/static/video/vid.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</section>
Expand Down
Binary file added web_flask/static/image/thorbie.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added web_flask/static/video/vid.mp4
Binary file not shown.
Loading