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

btns transition & extra scroll fixed #55

Merged
merged 2 commits into from
Oct 5, 2022
Merged
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
17 changes: 6 additions & 11 deletions Website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
height: 60px;

}


header {
height: 100vh;
Expand Down Expand Up @@ -121,9 +120,9 @@
display: inline-block;
padding: 16px 32px;
border-radius: 9px;
transition:all 1s ease;
}
.btn:hover{
transition: 1s;
background-color:darkred;
font-size: larger;
}
Expand All @@ -136,9 +135,9 @@
display: inline-block;
padding: 16px 32px;
border-radius: 9px;
transition:all 1s ease;
}
.btn4:hover{
transition: 1s;
color:#fff;
background-color:rgb(28, 1, 47);
font-size: larger;
Expand Down Expand Up @@ -184,6 +183,10 @@
width:30px;
cursor: pointer;
}

.more-info-section{
overflow: hidden;
}

.more-info {
left: 50%;
Expand Down Expand Up @@ -262,20 +265,14 @@ <h2>More Information About Drifty</h2>
</a>
</div>
</section>



<section>
<div class="more-info" id="demo">
<h2>Demonstration of using Drifty</h2>
<p>
Here is a quick demo of using Drifty.
</p>
<p>
<video src="Resources/Usage.mp4" height=700 width=1250 controls></video>
</p>
</section>

<!-- contact us section -->
<section id="contact">
<div class="contact_section">
Expand All @@ -286,8 +283,6 @@ <h2>Contact Us</h2>
</a>
</div>
</section>

<section class="footer" id="">
<div class="social">
<a href="https://www.twitter.com/SSarkar2007"><i class="fab fa-twitter"></i></a>
<a href="https://github.com/SaptarshiSarkar12"><i class="fab fa-github"></i></a>
Expand Down