Skip to content

Commit

Permalink
Merge pull request #146 from Devanshu1603/main
Browse files Browse the repository at this point in the history
solved issue #100
  • Loading branch information
jency1 authored Oct 16, 2024
2 parents 240780b + 5054fe5 commit 4473cba
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
<div class="scroll_icon" id="scroll_icon">SCROLL TO KNOW MORE
<div class="shadow" id="shadow"></div>
</div>
<div class="download" id="download">
<div class="download" id="download" style="height: 600px;">
<div class="left">
<div id="map">
<div class="direction"><img src="https://cdn-icons-png.flaticon.com/512/0/614.png" id="aeroplane"></div>
Expand Down Expand Up @@ -155,7 +155,7 @@
<div class="scroll_animation"></div>
</div>
</div>
<div class="section big_container"></div>
<div class="section big_container" style=" margin-top: 100px;"></div>
<div class="section" id="about">
<div class="about_left">
<p class="heading">So, What does this Software do?</p>
Expand Down
13 changes: 11 additions & 2 deletions website/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,11 @@ body {
color: black; /* Default text color in light mode */
}

.dark-mode #download_btn{
color: white;
border: 1px solid #fff;
}

/* Dark mode styles */
body.dark-mode {
background-color: black; /* Dark mode background */
Expand Down Expand Up @@ -637,8 +642,8 @@ tr:hover {

#download_btn {
background-color: #00000000;
border: 1px solid white;
color: white;
border: 1px solid black;
color: black;
font-size: large;
transition-duration: 0.3s;
padding: 10px 20px 10px 20px;
Expand Down Expand Up @@ -1141,8 +1146,12 @@ input {
left: 50%;
margin-top: 45vh;
transform: translate(-50%);
color: #333;
}




#about {
padding-top: 90px;
margin-top: 0;
Expand Down

0 comments on commit 4473cba

Please sign in to comment.